<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[LA/QM forum - Bugs (LA)]]></title>
		<link>https://www.libreautomate.com/forum/</link>
		<description><![CDATA[LA/QM forum - https://www.libreautomate.com/forum]]></description>
		<pubDate>Mon, 04 May 2026 13:33:02 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[WinEventHook SYSTEM_DIALOGSTART never raised]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7868</link>
			<pubDate>Thu, 04 Sep 2025 09:09:16 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1554">AutoStarter</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7868</guid>
			<description><![CDATA[Dear Sirs,<br />
<br />
it seems that event for starting system dialog #32770 is never raised (see sample script below).<br />
Only event for dialog end is catched.<br />
I'm trying to get the selected path of choosen file(s) after hitting button (Open/Save/SaveAs ...) on the system dialog cn:#32770. Therefore I try to use a general Hook but DialogEnd message seems to be too late because window might be already released.<br />
My idea was to start a timer to detect changes of path value (cn:#32770, id: 41477) at DialogStart and stop timer later after DialogEnd is raised - but without luck till now.<br />
If anyone has an idea how to implemente such a hook to catch the user selected filepath, please let me know.<br />
 <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>// script "TestEventHook.cs"<br />
<br />
<span class='kw'>using</span> <span class='ns'>Au</span><span class='op'>.</span><span class='ns'>Triggers</span><span class='pn'>;</span><br />
<br />
<span class='tp'>script</span><span class='op'>.</span><span class='fn'>setup</span><span class='pn'>(</span><span class='vr'>trayIcon</span><span class='pn'>:</span> <span class='kw'>true</span><span class='pn'>,</span> <span class='vr'>sleepExit</span><span class='pn'>:</span> <span class='kw'>true</span><span class='pn'>);</span><br />
<br />
<span class='tp'>ActionTriggers</span> <span class='vr'>Triggers</span> <span class='op'>=</span> <span class='kw'>new</span><span class='pn'>();</span><br />
  <span class='kw'>new</span> <span class='tp'>WinEventHook</span><span class='pn'>(</span><span class='tp'>EEvent</span><span class='op'>.</span><span class='cn'>SYSTEM_DIALOGEND</span><span class='pn'>,</span> <span class='tp'>EEvent</span><span class='op'>.</span><span class='cn'>SYSTEM_DIALOGEND</span><span class='pn'>,</span> <span class='vr'>k</span> <span class='op'>=&gt;</span> <span class='pn'>{</span><br />
    <span class='kw'>var</span> <span class='vr'>cf</span> <span class='op'>=</span> <span class='kw'>new</span> <span class='tp'>wndChildFinder</span><span class='pn'>(</span><span class='vr'>id</span><span class='pn'>:</span> <span class='nr'>41477</span><span class='pn'>);</span><br />
    <span class='kw'>bool</span> <span class='vr'>found</span> <span class='op'>=</span> <span class='vr'>k</span><span class='op'>.</span><span class='vr'>w</span><span class='op'>.</span><span class='fn'>IsMatch</span><span class='pn'>(</span><span class='vr'>cn</span><span class='pn'>:</span> <span class='st'>"#32770"</span><span class='pn'>,</span> <span class='vr'>contains</span><span class='pn'>:</span> <span class='vr'>cf</span><span class='pn'>);</span><br />
    <span class='tp'>print</span><span class='op'>.</span><span class='fn'>it</span><span class='pn'>(</span><span class='st'>&#36;"SYSTEM_DIALOGEND found=</span><span class='pn'>{</span><span class='vr'>found</span><span class='pn'>}</span><span class='st'> =&gt; </span><span class='pn'>{</span><span class='vr'>k</span><span class='pn'>}</span><span class='st'>"</span><span class='pn'>);<br />
  });</span><br />
<br />
  <span class='kw'>new</span> <span class='tp'>WinEventHook</span><span class='pn'>(</span><span class='tp'>EEvent</span><span class='op'>.</span><span class='cn'>SYSTEM_DIALOGSTART</span><span class='pn'>,</span> <span class='tp'>EEvent</span><span class='op'>.</span><span class='cn'>SYSTEM_DIALOGSTART</span><span class='pn'>,</span> <span class='vr'>k</span> <span class='op'>=&gt;</span> <span class='pn'>{</span><br />
    <span class='kw'>var</span> <span class='vr'>cf</span> <span class='op'>=</span> <span class='kw'>new</span> <span class='tp'>wndChildFinder</span><span class='pn'>(</span><span class='vr'>id</span><span class='pn'>:</span> <span class='nr'>41477</span><span class='pn'>);</span><br />
    <span class='kw'>bool</span> <span class='vr'>found</span> <span class='op'>=</span> <span class='vr'>k</span><span class='op'>.</span><span class='vr'>w</span><span class='op'>.</span><span class='fn'>IsMatch</span><span class='pn'>(</span><span class='vr'>cn</span><span class='pn'>:</span> <span class='st'>"#32770"</span><span class='pn'>,</span> <span class='vr'>contains</span><span class='pn'>:</span> <span class='vr'>cf</span><span class='pn'>);</span><br />
    <span class='tp'>print</span><span class='op'>.</span><span class='fn'>it</span><span class='pn'>(</span><span class='st'>&#36;"SYSTEM_DIALOGSTART found=</span><span class='pn'>{</span><span class='vr'>found</span><span class='pn'>}</span><span class='st'> =&gt; </span><span class='pn'>{</span><span class='vr'>k</span><span class='pn'>}</span><span class='st'>"</span><span class='pn'>);<br />
  });</span><br />
<br />
<span class='vr'>Triggers</span><span class='op'>.</span><span class='fn'>Run</span><span class='pn'>();</span></code></div></div>]]></description>
			<content:encoded><![CDATA[Dear Sirs,<br />
<br />
it seems that event for starting system dialog #32770 is never raised (see sample script below).<br />
Only event for dialog end is catched.<br />
I'm trying to get the selected path of choosen file(s) after hitting button (Open/Save/SaveAs ...) on the system dialog cn:#32770. Therefore I try to use a general Hook but DialogEnd message seems to be too late because window might be already released.<br />
My idea was to start a timer to detect changes of path value (cn:#32770, id: 41477) at DialogStart and stop timer later after DialogEnd is raised - but without luck till now.<br />
If anyone has an idea how to implemente such a hook to catch the user selected filepath, please let me know.<br />
 <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>// script "TestEventHook.cs"<br />
<br />
<span class='kw'>using</span> <span class='ns'>Au</span><span class='op'>.</span><span class='ns'>Triggers</span><span class='pn'>;</span><br />
<br />
<span class='tp'>script</span><span class='op'>.</span><span class='fn'>setup</span><span class='pn'>(</span><span class='vr'>trayIcon</span><span class='pn'>:</span> <span class='kw'>true</span><span class='pn'>,</span> <span class='vr'>sleepExit</span><span class='pn'>:</span> <span class='kw'>true</span><span class='pn'>);</span><br />
<br />
<span class='tp'>ActionTriggers</span> <span class='vr'>Triggers</span> <span class='op'>=</span> <span class='kw'>new</span><span class='pn'>();</span><br />
  <span class='kw'>new</span> <span class='tp'>WinEventHook</span><span class='pn'>(</span><span class='tp'>EEvent</span><span class='op'>.</span><span class='cn'>SYSTEM_DIALOGEND</span><span class='pn'>,</span> <span class='tp'>EEvent</span><span class='op'>.</span><span class='cn'>SYSTEM_DIALOGEND</span><span class='pn'>,</span> <span class='vr'>k</span> <span class='op'>=&gt;</span> <span class='pn'>{</span><br />
    <span class='kw'>var</span> <span class='vr'>cf</span> <span class='op'>=</span> <span class='kw'>new</span> <span class='tp'>wndChildFinder</span><span class='pn'>(</span><span class='vr'>id</span><span class='pn'>:</span> <span class='nr'>41477</span><span class='pn'>);</span><br />
    <span class='kw'>bool</span> <span class='vr'>found</span> <span class='op'>=</span> <span class='vr'>k</span><span class='op'>.</span><span class='vr'>w</span><span class='op'>.</span><span class='fn'>IsMatch</span><span class='pn'>(</span><span class='vr'>cn</span><span class='pn'>:</span> <span class='st'>"#32770"</span><span class='pn'>,</span> <span class='vr'>contains</span><span class='pn'>:</span> <span class='vr'>cf</span><span class='pn'>);</span><br />
    <span class='tp'>print</span><span class='op'>.</span><span class='fn'>it</span><span class='pn'>(</span><span class='st'>&#36;"SYSTEM_DIALOGEND found=</span><span class='pn'>{</span><span class='vr'>found</span><span class='pn'>}</span><span class='st'> =&gt; </span><span class='pn'>{</span><span class='vr'>k</span><span class='pn'>}</span><span class='st'>"</span><span class='pn'>);<br />
  });</span><br />
<br />
  <span class='kw'>new</span> <span class='tp'>WinEventHook</span><span class='pn'>(</span><span class='tp'>EEvent</span><span class='op'>.</span><span class='cn'>SYSTEM_DIALOGSTART</span><span class='pn'>,</span> <span class='tp'>EEvent</span><span class='op'>.</span><span class='cn'>SYSTEM_DIALOGSTART</span><span class='pn'>,</span> <span class='vr'>k</span> <span class='op'>=&gt;</span> <span class='pn'>{</span><br />
    <span class='kw'>var</span> <span class='vr'>cf</span> <span class='op'>=</span> <span class='kw'>new</span> <span class='tp'>wndChildFinder</span><span class='pn'>(</span><span class='vr'>id</span><span class='pn'>:</span> <span class='nr'>41477</span><span class='pn'>);</span><br />
    <span class='kw'>bool</span> <span class='vr'>found</span> <span class='op'>=</span> <span class='vr'>k</span><span class='op'>.</span><span class='vr'>w</span><span class='op'>.</span><span class='fn'>IsMatch</span><span class='pn'>(</span><span class='vr'>cn</span><span class='pn'>:</span> <span class='st'>"#32770"</span><span class='pn'>,</span> <span class='vr'>contains</span><span class='pn'>:</span> <span class='vr'>cf</span><span class='pn'>);</span><br />
    <span class='tp'>print</span><span class='op'>.</span><span class='fn'>it</span><span class='pn'>(</span><span class='st'>&#36;"SYSTEM_DIALOGSTART found=</span><span class='pn'>{</span><span class='vr'>found</span><span class='pn'>}</span><span class='st'> =&gt; </span><span class='pn'>{</span><span class='vr'>k</span><span class='pn'>}</span><span class='st'>"</span><span class='pn'>);<br />
  });</span><br />
<br />
<span class='vr'>Triggers</span><span class='op'>.</span><span class='fn'>Run</span><span class='pn'>();</span></code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[UI Element Finder Dialog Closes Unexpectedly]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7811</link>
			<pubDate>Mon, 24 Mar 2025 01:27:20 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1516">Davider</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7811</guid>
			<description><![CDATA[In the <span style="font-weight: bold;" class="mycode_b">CapCut</span> software (latest version), when using the <span style="font-weight: bold;" class="mycode_b">"Find UI Element"</span> dialog in the navigation window to retrieve element properties, the dialog closes unexpectedly.<br />
Steps to reproduce:<br />
<ol type="1" class="mycode_list"><li>Press <span style="font-weight: bold;" class="mycode_b">Shift + F3</span><br />
</li>
<li>Then press <span style="font-weight: bold;" class="mycode_b">F3</span><br />
</li>
</ol>
The dialog will exit abnormally. Below is a demonstration:<br />
<a href="https://download.ru/files/NxlZT8oz" target="_blank" rel="noopener" class="mycode_url">https://download.ru/files/NxlZT8oz</a><br />
<hr class="mycode_hr" />
<span style="font-weight: bold;" class="mycode_b">TIP:</span><br />
In the latest version of <span style="font-weight: bold;" class="mycode_b">CapCut</span>, the controls in the <span style="font-weight: bold;" class="mycode_b">navigation window</span> and the <span style="font-weight: bold;" class="mycode_b">main application window</span> are now hidden, making it impossible to retrieve control properties. Could this be the reason for the issue mentioned above?<br />
 <br />
<span style="font-weight: bold;" class="mycode_b">Another Issue1:</span><br />
Although the <span style="font-weight: bold;" class="mycode_b">Shift + F3</span> hotkey can switch to an alternative element detection mode, for many controls, even when they are recognized, their properties cannot be retrieved. I have to manually select the <span style="font-weight: bold;" class="mycode_b">"UI Automation"</span> option and then press <span style="font-weight: bold;" class="mycode_b">F3</span> again to get the control properties.<br />
Therefore, I suggest that when I press <span style="font-weight: bold;" class="mycode_b">Shift + F3</span>, the <span style="font-weight: bold;" class="mycode_b">"UI Automation"</span> option should be selected automatically. Pressing <span style="font-weight: bold;" class="mycode_b">Shift + F3</span> again should deselect this option.<br />
<hr class="mycode_hr" />
<span style="font-weight: bold;" class="mycode_b">Another Issue2:</span><br />
When the <span style="font-weight: bold;" class="mycode_b">"Add to path"</span> option is selected, if I want to retrieve the <span style="font-weight: bold;" class="mycode_b">"navig"</span> property value of a specific control, the control must be in an <span style="font-weight: bold;" class="mycode_b">unselected</span> state. Otherwise, the property value cannot be obtained. This is often inconvenient. Below is a demonstration.<br />
<a href="https://download.ru/files/pXxHZwDA" target="_blank" rel="noopener" class="mycode_url">https://download.ru/files/pXxHZwDA</a>]]></description>
			<content:encoded><![CDATA[In the <span style="font-weight: bold;" class="mycode_b">CapCut</span> software (latest version), when using the <span style="font-weight: bold;" class="mycode_b">"Find UI Element"</span> dialog in the navigation window to retrieve element properties, the dialog closes unexpectedly.<br />
Steps to reproduce:<br />
<ol type="1" class="mycode_list"><li>Press <span style="font-weight: bold;" class="mycode_b">Shift + F3</span><br />
</li>
<li>Then press <span style="font-weight: bold;" class="mycode_b">F3</span><br />
</li>
</ol>
The dialog will exit abnormally. Below is a demonstration:<br />
<a href="https://download.ru/files/NxlZT8oz" target="_blank" rel="noopener" class="mycode_url">https://download.ru/files/NxlZT8oz</a><br />
<hr class="mycode_hr" />
<span style="font-weight: bold;" class="mycode_b">TIP:</span><br />
In the latest version of <span style="font-weight: bold;" class="mycode_b">CapCut</span>, the controls in the <span style="font-weight: bold;" class="mycode_b">navigation window</span> and the <span style="font-weight: bold;" class="mycode_b">main application window</span> are now hidden, making it impossible to retrieve control properties. Could this be the reason for the issue mentioned above?<br />
 <br />
<span style="font-weight: bold;" class="mycode_b">Another Issue1:</span><br />
Although the <span style="font-weight: bold;" class="mycode_b">Shift + F3</span> hotkey can switch to an alternative element detection mode, for many controls, even when they are recognized, their properties cannot be retrieved. I have to manually select the <span style="font-weight: bold;" class="mycode_b">"UI Automation"</span> option and then press <span style="font-weight: bold;" class="mycode_b">F3</span> again to get the control properties.<br />
Therefore, I suggest that when I press <span style="font-weight: bold;" class="mycode_b">Shift + F3</span>, the <span style="font-weight: bold;" class="mycode_b">"UI Automation"</span> option should be selected automatically. Pressing <span style="font-weight: bold;" class="mycode_b">Shift + F3</span> again should deselect this option.<br />
<hr class="mycode_hr" />
<span style="font-weight: bold;" class="mycode_b">Another Issue2:</span><br />
When the <span style="font-weight: bold;" class="mycode_b">"Add to path"</span> option is selected, if I want to retrieve the <span style="font-weight: bold;" class="mycode_b">"navig"</span> property value of a specific control, the control must be in an <span style="font-weight: bold;" class="mycode_b">unselected</span> state. Otherwise, the property value cannot be obtained. This is often inconvenient. Below is a demonstration.<br />
<a href="https://download.ru/files/pXxHZwDA" target="_blank" rel="noopener" class="mycode_url">https://download.ru/files/pXxHZwDA</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[b.R.Add(ImageUtil.LoadWpfImageElement) show error and hang the program Version 1.9.0]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7809</link>
			<pubDate>Sat, 22 Mar 2025 04:04:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1587">hiro</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7809</guid>
			<description><![CDATA[This code create error everytime, even when I paste it in, only after updated to version 1.9.0<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>using System.Windows;<br />
using System.Windows.Controls;<br />
<br />
<br />
var b = new wpfBuilder("My WPF app").Columns(0);<br />
<br />
b.R.Add(ImageUtil.LoadWpfImageElement);</code></div></div><br />
It also show an error message window, that make program hang when clicked<br />
<br />
Error in Console:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>---- Debug assertion failed ----<br />
!containsFunctionTypes(exact)<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.Fix(CSharpCompilation compilation, ConversionsBase conversions, TypeParameterSymbol typeParameter, HashSet`1 exact, HashSet`1 lower, HashSet`1 upper, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 2853<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.Fix(Int32 iParam, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 2806<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.FixParameters(FixParametersPredicate predicate, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 969<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.FixNondependentParameters(CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 930<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.DoSecondPhase(Binder binder, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 814<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.InferTypeArgsSecondPhase(Binder binder, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 773<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.InferTypeArgs(Binder binder, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 563<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.Infer(Binder binder, ConversionsBase conversions, ImmutableArray`1 methodTypeParameters, NamedTypeSymbol constructedContainingTypeOfMethod, ImmutableArray`1 formalParameterTypes, ImmutableArray`1 formalParameterRefKinds, ImmutableArray`1 arguments, CompoundUseSiteInfo`1&amp; useSiteInfo, Extensions extensions) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 302<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.InferMethodTypeArguments(MethodSymbol method, ImmutableArray`1 originalTypeParameters, AnalyzedArguments arguments, EffectiveParameters originalEffectiveParameters, Boolean&amp; hasTypeArgumentsInferredFromFunctionType, MemberAnalysisResult&amp; error, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 4344<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.IsApplicable[TMember](TMember member, TMember leastOverriddenMember, ArrayBuilder`1 typeArgumentsBuilder, AnalyzedArguments arguments, Options options, EffectiveParameters constructedFromEffectiveParameters, TypeWithAnnotations definitionParamsElementTypeOpt, Boolean isExpanded, ImmutableArray`1 argsToParamsMap, Boolean hasAnyRefOmittedArgument, Boolean inferWithDynamic, Boolean completeResults, Boolean dynamicConvertsToAnything, Boolean isMethodGroupConversion, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 4242<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.IsMemberApplicableInNormalForm[TMember](TMember member, TMember leastOverriddenMember, ArrayBuilder`1 typeArguments, AnalyzedArguments arguments, Options options, Boolean completeResults, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 4055<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.AddMemberToCandidateSet[TMember](TMember member, ArrayBuilder`1 results, ArrayBuilder`1 members, ArrayBuilder`1 typeArguments, AnalyzedArguments arguments, Boolean completeResults, Dictionary`2 containingTypeMapOpt, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, Boolean checkOverriddenOrHidden) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 1165<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.PerformMemberOverloadResolutionStart[TMember](ArrayBuilder`1 results, ArrayBuilder`1 members, ArrayBuilder`1 typeArguments, AnalyzedArguments arguments, Boolean completeResults, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, Boolean checkOverriddenOrHidden) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 378<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.PerformMemberOverloadResolution[TMember](ArrayBuilder`1 results, ArrayBuilder`1 members, ArrayBuilder`1 typeArguments, BoundExpression receiver, AnalyzedArguments arguments, Boolean completeResults, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConventionInfo, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, Boolean checkOverriddenOrHidden) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 445<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.MethodOrPropertyOverloadResolution[TMember](ArrayBuilder`1 members, ArrayBuilder`1 typeArguments, BoundExpression receiver, AnalyzedArguments arguments, OverloadResolutionResult`1 result, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConventionInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 206<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.MethodInvocationOverloadResolution(ArrayBuilder`1 methods, ArrayBuilder`1 typeArguments, BoundExpression receiver, AnalyzedArguments arguments, OverloadResolutionResult`1 result, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConventionInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 154<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.ResolveDefaultMethodGroup(BoundMethodGroup node, AnalyzedArguments analyzedArguments, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConvention) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 10475<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.ResolveMethodGroupInternal(BoundMethodGroup methodGroup, SyntaxNode expression, String methodName, AnalyzedArguments analyzedArguments, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConvention) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 10347<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.ResolveMethodGroup(BoundMethodGroup node, SyntaxNode expression, String methodName, AnalyzedArguments analyzedArguments, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConventionInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 10299<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindMethodGroupInvocation(SyntaxNode syntax, SyntaxNode expression, String methodName, BoundMethodGroup methodGroup, AnalyzedArguments analyzedArguments, BindingDiagnosticBag diagnostics, CSharpSyntaxNode queryClause, Boolean ignoreNormalFormIfHasValidParamsParameter, Boolean&amp; anyApplicableCandidates, Boolean disallowExpandedNonArrayParams) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Invocation.cs:line 711<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindInvocationExpression(SyntaxNode node, SyntaxNode expression, String methodName, BoundExpression boundExpression, AnalyzedArguments analyzedArguments, BindingDiagnosticBag diagnostics, CSharpSyntaxNode queryClause, Boolean ignoreNormalFormIfHasValidParamsParameter, Boolean disallowExpandedNonArrayParams) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Invocation.cs:line 353<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.&lt;BindInvocationExpression&gt;g__bindArgumentsAndInvocation|605_0(InvocationExpressionSyntax node, BoundExpression boundExpression, AnalyzedArguments analyzedArguments, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Invocation.cs:line 248<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindInvocationExpression(InvocationExpressionSyntax node, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Invocation.cs:line 237<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.&lt;BindExpressionInternal&gt;g__bindExpressionInternal|344_0(ExpressionSyntax node, BindingDiagnosticBag diagnostics, Boolean invoked, Boolean indexed) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 604<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindExpressionInternal(ExpressionSyntax node, BindingDiagnosticBag diagnostics, Boolean invoked, Boolean indexed) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 579<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindExpression(ExpressionSyntax node, BindingDiagnosticBag diagnostics, Boolean invoked, Boolean indexed) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 536<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindValue(ExpressionSyntax node, BindingDiagnosticBag diagnostics, BindValueKind valueKind) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 238<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindRValueWithoutTargetType(ExpressionSyntax node, BindingDiagnosticBag diagnostics, Boolean reportNoTargetType) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 244<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindExpressionStatement(CSharpSyntaxNode node, ExpressionSyntax syntax, Boolean allowsAnyExpression, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 653<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindExpressionStatement(ExpressionStatementSyntax node, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 646<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindStatement(StatementSyntax node, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 73<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindSimpleProgramCompilationUnit(CompilationUnitSyntax compilationUnit, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 3685<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindSimpleProgram(CompilationUnitSyntax compilationUnit, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 3668<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindMethodBody(CSharpSyntaxNode syntax, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 3659<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodBodySemanticModel.Bind(Binder binder, CSharpSyntaxNode node, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MethodBodySemanticModel.cs:line 101<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.&lt;EnsureNullabilityAnalysisPerformedIfNecessary&gt;g__bind|132_0(CSharpSyntaxNode root, Binder&amp; binder, &lt;&gt;c__DisplayClass132_0&amp;) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 1988<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.EnsureNullabilityAnalysisPerformedIfNecessary() in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 1963<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.GetBoundNodes(CSharpSyntaxNode node) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 2079<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.GetLowerBoundNode(CSharpSyntaxNode node) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 554<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.GetBoundNodes(CSharpSyntaxNode node, CSharpSyntaxNode&amp; bindableNode, BoundNode&amp; lowestBoundNode, BoundNode&amp; highestBoundNode, BoundNode&amp; boundParent) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 1337<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.GetSymbolInfoWorker(CSharpSyntaxNode node, SymbolInfoOptions options, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 1215<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.SyntaxTreeSemanticModel.GetSymbolInfoWorker(CSharpSyntaxNode node, SymbolInfoOptions options, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;SyntaxTreeSemanticModel.cs:line 219<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.CSharpSemanticModel.GetSymbolInfo(ExpressionSyntax expression, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;CSharpSemanticModel.cs:line 572<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(SemanticModel semanticModel, ExpressionSyntax expression, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;CSharpExtensions.cs:line 501<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Classification.Classifiers.NameSyntaxClassifier.ClassifyTypeSyntax(SimpleNameSyntax name, SemanticModel semanticModel, SegmentedList`1 result, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;CSharp&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;NameSyntaxClassifier.cs:line 51<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Classification.Classifiers.NameSyntaxClassifier.AddClassifications(SyntaxNode syntax, TextSpan textSpan, SemanticModel semanticModel, ClassificationOptions options, SegmentedList`1 result, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;CSharp&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;NameSyntaxClassifier.cs:line 33<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.AbstractSyntaxClassificationService.Worker.ClassifyNode(SyntaxNode syntax) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;AbstractSyntaxClassificationService.Worker.cs:line 133<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.AbstractSyntaxClassificationService.Worker.ClassifyNodeOrToken(SyntaxNodeOrToken nodeOrToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;AbstractSyntaxClassificationService.Worker.cs:line 118<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.AbstractSyntaxClassificationService.Worker.ProcessNodes() in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;AbstractSyntaxClassificationService.Worker.cs:line 104<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.AbstractSyntaxClassificationService.Worker.Classify(SemanticModel semanticModel, ImmutableArray`1 textSpans, SegmentedList`1 list, Func`2 getNodeClassifiers, Func`2 getTokenClassifiers, ClassificationOptions options, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;AbstractSyntaxClassificationService.Worker.cs:line 71<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.AbstractSyntaxClassificationService.AddSemanticClassifications(SemanticModel semanticModel, ImmutableArray`1 textSpans, Func`2 getNodeClassifiers, Func`2 getTokenClassifiers, SegmentedList`1 result, ClassificationOptions options, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;AbstractSyntaxClassificationService.cs:line 57<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.SyntaxClassificationServiceExtensions.AddSemanticClassifications(ISyntaxClassificationService classificationService, SemanticModel semanticModel, TextSpan textSpan, Func`2 getNodeClassifiers, Func`2 getTokenClassifiers, SegmentedList`1 result, ClassificationOptions options, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;SyntaxClassificationExtensions.cs:line 57<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.Classifier.GetClassifiedSpans(SolutionServices services, Project project, SemanticModel semanticModel, TextSpan textSpan, ClassificationOptions options, Boolean includedEmbeddedClassifications, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;Classifier.cs:line 93<br />
&nbsp;&nbsp; at CiStyling.&lt;&gt;c__DisplayClass22_1.&lt;&lt;_Work&gt;b__4&gt;d.MoveNext() in C:&#92;code&#92;au&#92;Au.Editor&#92;Edit&#92;CiStyling.cs:line 209<br />
&nbsp;&nbsp; at System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[TStateMachine](TStateMachine&amp; stateMachine)<br />
&nbsp;&nbsp; at System.Threading.Tasks.Task`1.InnerInvoke()<br />
&nbsp;&nbsp; at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state)<br />
&nbsp;&nbsp; at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task&amp; currentTaskSlot, Thread threadPoolThread)<br />
&nbsp;&nbsp; at System.Threading.ThreadPoolWorkQueue.Dispatch()<br />
&nbsp;&nbsp; at System.Threading.PortableThreadPool.WorkerThread.WorkerThreadStart()</code></div></div>]]></description>
			<content:encoded><![CDATA[This code create error everytime, even when I paste it in, only after updated to version 1.9.0<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>using System.Windows;<br />
using System.Windows.Controls;<br />
<br />
<br />
var b = new wpfBuilder("My WPF app").Columns(0);<br />
<br />
b.R.Add(ImageUtil.LoadWpfImageElement);</code></div></div><br />
It also show an error message window, that make program hang when clicked<br />
<br />
Error in Console:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>---- Debug assertion failed ----<br />
!containsFunctionTypes(exact)<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.Fix(CSharpCompilation compilation, ConversionsBase conversions, TypeParameterSymbol typeParameter, HashSet`1 exact, HashSet`1 lower, HashSet`1 upper, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 2853<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.Fix(Int32 iParam, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 2806<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.FixParameters(FixParametersPredicate predicate, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 969<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.FixNondependentParameters(CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 930<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.DoSecondPhase(Binder binder, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 814<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.InferTypeArgsSecondPhase(Binder binder, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 773<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.InferTypeArgs(Binder binder, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 563<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodTypeInferrer.Infer(Binder binder, ConversionsBase conversions, ImmutableArray`1 methodTypeParameters, NamedTypeSymbol constructedContainingTypeOfMethod, ImmutableArray`1 formalParameterTypes, ImmutableArray`1 formalParameterRefKinds, ImmutableArray`1 arguments, CompoundUseSiteInfo`1&amp; useSiteInfo, Extensions extensions) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;MethodTypeInference.cs:line 302<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.InferMethodTypeArguments(MethodSymbol method, ImmutableArray`1 originalTypeParameters, AnalyzedArguments arguments, EffectiveParameters originalEffectiveParameters, Boolean&amp; hasTypeArgumentsInferredFromFunctionType, MemberAnalysisResult&amp; error, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 4344<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.IsApplicable[TMember](TMember member, TMember leastOverriddenMember, ArrayBuilder`1 typeArgumentsBuilder, AnalyzedArguments arguments, Options options, EffectiveParameters constructedFromEffectiveParameters, TypeWithAnnotations definitionParamsElementTypeOpt, Boolean isExpanded, ImmutableArray`1 argsToParamsMap, Boolean hasAnyRefOmittedArgument, Boolean inferWithDynamic, Boolean completeResults, Boolean dynamicConvertsToAnything, Boolean isMethodGroupConversion, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 4242<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.IsMemberApplicableInNormalForm[TMember](TMember member, TMember leastOverriddenMember, ArrayBuilder`1 typeArguments, AnalyzedArguments arguments, Options options, Boolean completeResults, CompoundUseSiteInfo`1&amp; useSiteInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 4055<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.AddMemberToCandidateSet[TMember](TMember member, ArrayBuilder`1 results, ArrayBuilder`1 members, ArrayBuilder`1 typeArguments, AnalyzedArguments arguments, Boolean completeResults, Dictionary`2 containingTypeMapOpt, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, Boolean checkOverriddenOrHidden) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 1165<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.PerformMemberOverloadResolutionStart[TMember](ArrayBuilder`1 results, ArrayBuilder`1 members, ArrayBuilder`1 typeArguments, AnalyzedArguments arguments, Boolean completeResults, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, Boolean checkOverriddenOrHidden) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 378<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.PerformMemberOverloadResolution[TMember](ArrayBuilder`1 results, ArrayBuilder`1 members, ArrayBuilder`1 typeArguments, BoundExpression receiver, AnalyzedArguments arguments, Boolean completeResults, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConventionInfo, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, Boolean checkOverriddenOrHidden) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 445<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.MethodOrPropertyOverloadResolution[TMember](ArrayBuilder`1 members, ArrayBuilder`1 typeArguments, BoundExpression receiver, AnalyzedArguments arguments, OverloadResolutionResult`1 result, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConventionInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 206<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.OverloadResolution.MethodInvocationOverloadResolution(ArrayBuilder`1 methods, ArrayBuilder`1 typeArguments, BoundExpression receiver, AnalyzedArguments arguments, OverloadResolutionResult`1 result, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConventionInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Semantics&#92;OverloadResolution&#92;OverloadResolution.cs:line 154<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.ResolveDefaultMethodGroup(BoundMethodGroup node, AnalyzedArguments analyzedArguments, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConvention) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 10475<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.ResolveMethodGroupInternal(BoundMethodGroup methodGroup, SyntaxNode expression, String methodName, AnalyzedArguments analyzedArguments, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConvention) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 10347<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.ResolveMethodGroup(BoundMethodGroup node, SyntaxNode expression, String methodName, AnalyzedArguments analyzedArguments, CompoundUseSiteInfo`1&amp; useSiteInfo, Options options, RefKind returnRefKind, TypeSymbol returnType, CallingConventionInfo&amp; callingConventionInfo) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 10299<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindMethodGroupInvocation(SyntaxNode syntax, SyntaxNode expression, String methodName, BoundMethodGroup methodGroup, AnalyzedArguments analyzedArguments, BindingDiagnosticBag diagnostics, CSharpSyntaxNode queryClause, Boolean ignoreNormalFormIfHasValidParamsParameter, Boolean&amp; anyApplicableCandidates, Boolean disallowExpandedNonArrayParams) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Invocation.cs:line 711<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindInvocationExpression(SyntaxNode node, SyntaxNode expression, String methodName, BoundExpression boundExpression, AnalyzedArguments analyzedArguments, BindingDiagnosticBag diagnostics, CSharpSyntaxNode queryClause, Boolean ignoreNormalFormIfHasValidParamsParameter, Boolean disallowExpandedNonArrayParams) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Invocation.cs:line 353<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.&lt;BindInvocationExpression&gt;g__bindArgumentsAndInvocation|605_0(InvocationExpressionSyntax node, BoundExpression boundExpression, AnalyzedArguments analyzedArguments, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Invocation.cs:line 248<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindInvocationExpression(InvocationExpressionSyntax node, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Invocation.cs:line 237<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.&lt;BindExpressionInternal&gt;g__bindExpressionInternal|344_0(ExpressionSyntax node, BindingDiagnosticBag diagnostics, Boolean invoked, Boolean indexed) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 604<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindExpressionInternal(ExpressionSyntax node, BindingDiagnosticBag diagnostics, Boolean invoked, Boolean indexed) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 579<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindExpression(ExpressionSyntax node, BindingDiagnosticBag diagnostics, Boolean invoked, Boolean indexed) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 536<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindValue(ExpressionSyntax node, BindingDiagnosticBag diagnostics, BindValueKind valueKind) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 238<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindRValueWithoutTargetType(ExpressionSyntax node, BindingDiagnosticBag diagnostics, Boolean reportNoTargetType) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Expressions.cs:line 244<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindExpressionStatement(CSharpSyntaxNode node, ExpressionSyntax syntax, Boolean allowsAnyExpression, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 653<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindExpressionStatement(ExpressionStatementSyntax node, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 646<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindStatement(StatementSyntax node, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 73<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindSimpleProgramCompilationUnit(CompilationUnitSyntax compilationUnit, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 3685<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindSimpleProgram(CompilationUnitSyntax compilationUnit, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 3668<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Binder.BindMethodBody(CSharpSyntaxNode syntax, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Binder&#92;Binder_Statements.cs:line 3659<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MethodBodySemanticModel.Bind(Binder binder, CSharpSyntaxNode node, BindingDiagnosticBag diagnostics) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MethodBodySemanticModel.cs:line 101<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.&lt;EnsureNullabilityAnalysisPerformedIfNecessary&gt;g__bind|132_0(CSharpSyntaxNode root, Binder&amp; binder, &lt;&gt;c__DisplayClass132_0&amp;) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 1988<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.EnsureNullabilityAnalysisPerformedIfNecessary() in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 1963<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.GetBoundNodes(CSharpSyntaxNode node) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 2079<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.GetLowerBoundNode(CSharpSyntaxNode node) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 554<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.GetBoundNodes(CSharpSyntaxNode node, CSharpSyntaxNode&amp; bindableNode, BoundNode&amp; lowestBoundNode, BoundNode&amp; highestBoundNode, BoundNode&amp; boundParent) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 1337<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.MemberSemanticModel.GetSymbolInfoWorker(CSharpSyntaxNode node, SymbolInfoOptions options, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;MemberSemanticModel.cs:line 1215<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.SyntaxTreeSemanticModel.GetSymbolInfoWorker(CSharpSyntaxNode node, SymbolInfoOptions options, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;SyntaxTreeSemanticModel.cs:line 219<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.CSharpSemanticModel.GetSymbolInfo(ExpressionSyntax expression, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;Compilation&#92;CSharpSemanticModel.cs:line 572<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.CSharpExtensions.GetSymbolInfo(SemanticModel semanticModel, ExpressionSyntax expression, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Compilers&#92;CSharp&#92;Portable&#92;CSharpExtensions.cs:line 501<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Classification.Classifiers.NameSyntaxClassifier.ClassifyTypeSyntax(SimpleNameSyntax name, SemanticModel semanticModel, SegmentedList`1 result, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;CSharp&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;NameSyntaxClassifier.cs:line 51<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.CSharp.Classification.Classifiers.NameSyntaxClassifier.AddClassifications(SyntaxNode syntax, TextSpan textSpan, SemanticModel semanticModel, ClassificationOptions options, SegmentedList`1 result, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;CSharp&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;NameSyntaxClassifier.cs:line 33<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.AbstractSyntaxClassificationService.Worker.ClassifyNode(SyntaxNode syntax) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;AbstractSyntaxClassificationService.Worker.cs:line 133<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.AbstractSyntaxClassificationService.Worker.ClassifyNodeOrToken(SyntaxNodeOrToken nodeOrToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;AbstractSyntaxClassificationService.Worker.cs:line 118<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.AbstractSyntaxClassificationService.Worker.ProcessNodes() in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;AbstractSyntaxClassificationService.Worker.cs:line 104<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.AbstractSyntaxClassificationService.Worker.Classify(SemanticModel semanticModel, ImmutableArray`1 textSpans, SegmentedList`1 list, Func`2 getNodeClassifiers, Func`2 getTokenClassifiers, ClassificationOptions options, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;AbstractSyntaxClassificationService.Worker.cs:line 71<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.AbstractSyntaxClassificationService.AddSemanticClassifications(SemanticModel semanticModel, ImmutableArray`1 textSpans, Func`2 getNodeClassifiers, Func`2 getTokenClassifiers, SegmentedList`1 result, ClassificationOptions options, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;AbstractSyntaxClassificationService.cs:line 57<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.SyntaxClassificationServiceExtensions.AddSemanticClassifications(ISyntaxClassificationService classificationService, SemanticModel semanticModel, TextSpan textSpan, Func`2 getNodeClassifiers, Func`2 getTokenClassifiers, SegmentedList`1 result, ClassificationOptions options, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;SyntaxClassification&#92;SyntaxClassificationExtensions.cs:line 57<br />
&nbsp;&nbsp; at Microsoft.CodeAnalysis.Classification.Classifier.GetClassifiedSpans(SolutionServices services, Project project, SemanticModel semanticModel, TextSpan textSpan, ClassificationOptions options, Boolean includedEmbeddedClassifications, CancellationToken cancellationToken) in C:&#92;code-lib&#92;roslyn&#92;src&#92;Workspaces&#92;Core&#92;Portable&#92;Classification&#92;Classifier.cs:line 93<br />
&nbsp;&nbsp; at CiStyling.&lt;&gt;c__DisplayClass22_1.&lt;&lt;_Work&gt;b__4&gt;d.MoveNext() in C:&#92;code&#92;au&#92;Au.Editor&#92;Edit&#92;CiStyling.cs:line 209<br />
&nbsp;&nbsp; at System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[TStateMachine](TStateMachine&amp; stateMachine)<br />
&nbsp;&nbsp; at System.Threading.Tasks.Task`1.InnerInvoke()<br />
&nbsp;&nbsp; at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state)<br />
&nbsp;&nbsp; at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task&amp; currentTaskSlot, Thread threadPoolThread)<br />
&nbsp;&nbsp; at System.Threading.ThreadPoolWorkQueue.Dispatch()<br />
&nbsp;&nbsp; at System.Threading.PortableThreadPool.WorkerThread.WorkerThreadStart()</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Local documentation of the installed program version (not woking)]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7806</link>
			<pubDate>Fri, 21 Mar 2025 14:42:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1587">hiro</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7806</guid>
			<description><![CDATA[Error: <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Warning: System.Threading.Tasks.TaskCanceledException: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing.<br />
 ---&gt; System.TimeoutException: A task was canceled.<br />
 ---&gt; System.Threading.Tasks.TaskCanceledException: A task was canceled.<br />
&nbsp;&nbsp; at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpConnectionWaiter`1.WaitForConnectionAsync(HttpRequestMessage request, HttpConnectionPool pool, Boolean async, CancellationToken requestCancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.Metrics.MetricsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.DecompressionHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; --- End of inner exception stack trace ---<br />
&nbsp;&nbsp; --- End of inner exception stack trace ---<br />
&nbsp;&nbsp; at System.Net.Http.HttpClient.HandleFailure(Exception e, Boolean telemetryStarted, HttpResponseMessage response, CancellationTokenSource cts, CancellationToken cancellationToken, CancellationTokenSource pendingRequestsCts)<br />
&nbsp;&nbsp; at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption)<br />
&nbsp;&nbsp; at Au.Types.ExtInternet.Get(HttpClient t, String url, Boolean dontWait, IEnumerable`1 headers, String auth, Action`1 also)<br />
&nbsp;&nbsp; at Au.Types.ExtInternet.Get(HttpClient t, String url, String resultFile, IEnumerable`1 headers, String auth, Action`1 also)<br />
&nbsp;&nbsp; at DocsHttpServer._AutoDownloadDocs() in C:&#92;code&#92;au&#92;Au.Editor&#92;xMisc&#92;DocsHttpServer.cs:line 49<br />
&nbsp;&nbsp; at DocsHttpServer.&lt;&gt;c.&lt;StartOrSwitch&gt;b__2_0() in C:&#92;code&#92;au&#92;Au.Editor&#92;xMisc&#92;DocsHttpServer.cs:line 14</code></div></div>]]></description>
			<content:encoded><![CDATA[Error: <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Warning: System.Threading.Tasks.TaskCanceledException: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing.<br />
 ---&gt; System.TimeoutException: A task was canceled.<br />
 ---&gt; System.Threading.Tasks.TaskCanceledException: A task was canceled.<br />
&nbsp;&nbsp; at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellation(CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpConnectionWaiter`1.WaitForConnectionAsync(HttpRequestMessage request, HttpConnectionPool pool, Boolean async, CancellationToken requestCancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.Metrics.MetricsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.DecompressionHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpMessageHandlerStage.Send(HttpRequestMessage request, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.SocketsHttpHandler.Send(HttpRequestMessage request, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; --- End of inner exception stack trace ---<br />
&nbsp;&nbsp; --- End of inner exception stack trace ---<br />
&nbsp;&nbsp; at System.Net.Http.HttpClient.HandleFailure(Exception e, Boolean telemetryStarted, HttpResponseMessage response, CancellationTokenSource cts, CancellationToken cancellationToken, CancellationTokenSource pendingRequestsCts)<br />
&nbsp;&nbsp; at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken)<br />
&nbsp;&nbsp; at System.Net.Http.HttpClient.Send(HttpRequestMessage request, HttpCompletionOption completionOption)<br />
&nbsp;&nbsp; at Au.Types.ExtInternet.Get(HttpClient t, String url, Boolean dontWait, IEnumerable`1 headers, String auth, Action`1 also)<br />
&nbsp;&nbsp; at Au.Types.ExtInternet.Get(HttpClient t, String url, String resultFile, IEnumerable`1 headers, String auth, Action`1 also)<br />
&nbsp;&nbsp; at DocsHttpServer._AutoDownloadDocs() in C:&#92;code&#92;au&#92;Au.Editor&#92;xMisc&#92;DocsHttpServer.cs:line 49<br />
&nbsp;&nbsp; at DocsHttpServer.&lt;&gt;c.&lt;StartOrSwitch&gt;b__2_0() in C:&#92;code&#92;au&#92;Au.Editor&#92;xMisc&#92;DocsHttpServer.cs:line 14</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Changing an AutoText and compiling does not update]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7768</link>
			<pubDate>Sat, 19 Oct 2024 14:15:43 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1471">MBaas</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7768</guid>
			<description><![CDATA[I think this has been introcued with one of the recent updates...<br />
<br />
When I update the definition of an AutoText (or add a new one) and Compile, it isn't effective. I need to exit LA and start it again.<br />
<br />
(Did not test with the other types of macros)]]></description>
			<content:encoded><![CDATA[I think this has been introcued with one of the recent updates...<br />
<br />
When I update the definition of an AutoText (or add a new one) and Compile, it isn't effective. I need to exit LA and start it again.<br />
<br />
(Did not test with the other types of macros)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[After updating the LA portable version, it won't start.]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7761</link>
			<pubDate>Sun, 29 Sep 2024 09:42:54 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1516">Davider</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7761</guid>
			<description><![CDATA[I updated the LA portable version using the configuration shown in the image below, but now LA won't launch; the window flashes and then closes immediately.<br />
<br />
<a href="https://i.ibb.co/1vscF59/A.jpg" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/1vscF59/A.jpg</a><br />
<hr class="mycode_hr" />
My goal for the update was to update the .NET runtime, LA software, option settings, and the DLL folder, while the script documents didn't need to be updated.]]></description>
			<content:encoded><![CDATA[I updated the LA portable version using the configuration shown in the image below, but now LA won't launch; the window flashes and then closes immediately.<br />
<br />
<a href="https://i.ibb.co/1vscF59/A.jpg" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/1vscF59/A.jpg</a><br />
<hr class="mycode_hr" />
My goal for the update was to update the .NET runtime, LA software, option settings, and the DLL folder, while the script documents didn't need to be updated.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[nuget err]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7737</link>
			<pubDate>Thu, 08 Aug 2024 22:48:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1516">Davider</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7737</guid>
			<description><![CDATA[#1<br />
It's not possible to install the NuGet package named spire.doc into a folder named spire.doc; an error occurs.<br />
<a href="https://i.ibb.co/Tw5fdwM/AA.png" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/Tw5fdwM/AA.png</a><br />
<br />
#2<br />
I want to change the script role to a class file, but that option isn't available in the role selection list. Do I have to manually create a new class file? I remember that earlier versions of LA supported conversion in the selection list.<br />
<a href="https://i.ibb.co/zVzxGRT/CC.png" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/zVzxGRT/CC.png</a><br />
<br />
#3<br />
In the message box shown below, it would be more convenient if, after clicking the OK button, the Tools -&gt; NuGet dialog box could open automatically.<br />
<a href="https://i.ibb.co/hW3DJ5H/DD.png" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/hW3DJ5H/DD.png</a><br />
<br />
#4<br />
When switching to the bookmarks or breakpoints tab, the control box height becomes smaller. However, I don't have this issue on my other computer; the height remains the same. Additionally, sometimes there's a blank area between the file search box and the controls below it, which cannot be adjusted. This seems to happen after resizing the open panel and tasks panel. The blank area only disappears after restarting LA.<br />
<a href="https://i.ibb.co/6BybQ5S/a.gif" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/6BybQ5S/a.gif</a><br />
<br />
#5<br />
With the text insertion point inside `<span style="font-weight: bold;" class="mycode_b">spire.doc</span>`, pressing F12 failed to open its containing folder.  <br />
`/*/ nuget spire\<span style="font-weight: bold;" class="mycode_b">spire.doc</span>; /*/`<br />
<br />
#6<br />
The `using` statement was added repeatedly.<br />
<a href="https://i.ibb.co/7VFDsCp/a.gif" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/7VFDsCp/a.gif</a>]]></description>
			<content:encoded><![CDATA[#1<br />
It's not possible to install the NuGet package named spire.doc into a folder named spire.doc; an error occurs.<br />
<a href="https://i.ibb.co/Tw5fdwM/AA.png" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/Tw5fdwM/AA.png</a><br />
<br />
#2<br />
I want to change the script role to a class file, but that option isn't available in the role selection list. Do I have to manually create a new class file? I remember that earlier versions of LA supported conversion in the selection list.<br />
<a href="https://i.ibb.co/zVzxGRT/CC.png" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/zVzxGRT/CC.png</a><br />
<br />
#3<br />
In the message box shown below, it would be more convenient if, after clicking the OK button, the Tools -&gt; NuGet dialog box could open automatically.<br />
<a href="https://i.ibb.co/hW3DJ5H/DD.png" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/hW3DJ5H/DD.png</a><br />
<br />
#4<br />
When switching to the bookmarks or breakpoints tab, the control box height becomes smaller. However, I don't have this issue on my other computer; the height remains the same. Additionally, sometimes there's a blank area between the file search box and the controls below it, which cannot be adjusted. This seems to happen after resizing the open panel and tasks panel. The blank area only disappears after restarting LA.<br />
<a href="https://i.ibb.co/6BybQ5S/a.gif" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/6BybQ5S/a.gif</a><br />
<br />
#5<br />
With the text insertion point inside `<span style="font-weight: bold;" class="mycode_b">spire.doc</span>`, pressing F12 failed to open its containing folder.  <br />
`/*/ nuget spire\<span style="font-weight: bold;" class="mycode_b">spire.doc</span>; /*/`<br />
<br />
#6<br />
The `using` statement was added repeatedly.<br />
<a href="https://i.ibb.co/7VFDsCp/a.gif" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/7VFDsCp/a.gif</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Compile using LA Portable Version]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7715</link>
			<pubDate>Wed, 05 Jun 2024 22:20:19 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1516">Davider</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7715</guid>
			<description><![CDATA[I imported the HTTP server project into the LA portable version, and the following error occurred during compilation. The path mentioned in red below does not exist.<br />
<br />
<br />
Failed to compile 'HTTP server.cs'. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation.<br />
 ---&gt; System.NullReferenceException: Object reference not set to an instance of an object.<br />
   at Au.folders.get_NetRuntimeDesktop()<br />
   at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)<br />
   at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)<br />
   --- End of inner exception stack trace ---<br />
   at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)<br />
   at System.Reflection.PropertyInfo.GetValue(Object obj)<br />
   at Au.folders.&lt;&gt;c.&lt;.cctor&gt;b__315_0()<br />
   at System.Lazy`1.ViaFactory(LazyThreadSafetyMode mode)<br />
--- End of stack trace from previous location ---<br />
   at System.Lazy`1.CreateValue()<br />
   at Au.folders.unexpandPath(String path, String&amp; folder, String&amp; name)<br />
   at Au.folders.unexpandPath(String path)<br />
   at Au.Compiler.Compiler.XCompiled.AddCompiled(FileNode f, String outFile, MetaComments m, MPFlags miniFlags) in <span style="color: #ff0000;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">C:\code\au\Au.Editor\Compiler\XCompiled.cs</span></span>:line 178<br />
   at Au.Compiler.Compiler._Compile(CCReason reason, FileNode f, CompResults&amp; r, FileNode projFolder, Action&amp; aFinally, Func`2 canCompile, MCFlags addMetaFlags) in C:\code\au\Au.Editor\Compiler\Compiler.cs:line 298<br />
   at Au.Compiler.Compiler.Compile(CCReason reason, CompResults&amp; r, FileNode f, FileNode projFolder, Boolean needMeta, Func`2 canCompile, MCFlags addMetaFlags) in C:\code\au\Au.Editor\Compiler\Compiler.cs:line 58<br />
<hr class="mycode_hr" />
Adding DLL reference doesn't work.<br />
<a href="https://i.ibb.co/7rp2w9R/AAA.gif" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/7rp2w9R/AAA.gif</a><br />
<hr class="mycode_hr" />
In the LA portable version, sometimes the referenced path is added in the following format.<br />
/*/ r data\doc\Main\dll\Newtonsoft.Json.dll; /*/<br />
<br />
I think it should be added in this format.<br />
/*/ r %dll%\Newtonsoft.Json.dll; /*/]]></description>
			<content:encoded><![CDATA[I imported the HTTP server project into the LA portable version, and the following error occurred during compilation. The path mentioned in red below does not exist.<br />
<br />
<br />
Failed to compile 'HTTP server.cs'. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation.<br />
 ---&gt; System.NullReferenceException: Object reference not set to an instance of an object.<br />
   at Au.folders.get_NetRuntimeDesktop()<br />
   at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)<br />
   at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)<br />
   --- End of inner exception stack trace ---<br />
   at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)<br />
   at System.Reflection.PropertyInfo.GetValue(Object obj)<br />
   at Au.folders.&lt;&gt;c.&lt;.cctor&gt;b__315_0()<br />
   at System.Lazy`1.ViaFactory(LazyThreadSafetyMode mode)<br />
--- End of stack trace from previous location ---<br />
   at System.Lazy`1.CreateValue()<br />
   at Au.folders.unexpandPath(String path, String&amp; folder, String&amp; name)<br />
   at Au.folders.unexpandPath(String path)<br />
   at Au.Compiler.Compiler.XCompiled.AddCompiled(FileNode f, String outFile, MetaComments m, MPFlags miniFlags) in <span style="color: #ff0000;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">C:\code\au\Au.Editor\Compiler\XCompiled.cs</span></span>:line 178<br />
   at Au.Compiler.Compiler._Compile(CCReason reason, FileNode f, CompResults&amp; r, FileNode projFolder, Action&amp; aFinally, Func`2 canCompile, MCFlags addMetaFlags) in C:\code\au\Au.Editor\Compiler\Compiler.cs:line 298<br />
   at Au.Compiler.Compiler.Compile(CCReason reason, CompResults&amp; r, FileNode f, FileNode projFolder, Boolean needMeta, Func`2 canCompile, MCFlags addMetaFlags) in C:\code\au\Au.Editor\Compiler\Compiler.cs:line 58<br />
<hr class="mycode_hr" />
Adding DLL reference doesn't work.<br />
<a href="https://i.ibb.co/7rp2w9R/AAA.gif" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/7rp2w9R/AAA.gif</a><br />
<hr class="mycode_hr" />
In the LA portable version, sometimes the referenced path is added in the following format.<br />
/*/ r data\doc\Main\dll\Newtonsoft.Json.dll; /*/<br />
<br />
I think it should be added in this format.<br />
/*/ r %dll%\Newtonsoft.Json.dll; /*/]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[dialog.showInfo timeoutinfo disappeare if window is dragged]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7711</link>
			<pubDate>Thu, 16 May 2024 16:02:14 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1554">AutoStarter</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7711</guid>
			<description><![CDATA[using latest nuget-package LibreAutomate 1.2.0<br />
Infotext showing seconds until window is autoclosed is not redrawn after dragging window to new position.<br />
<br />
      var result = dialog.showInfo(<br />
        text1: &#36;"Confirmation triggered correct?",<br />
        text2: &#36;"Yes={c2.ControlText} No={c3.ControlText} Message={c1.ControlText}",<br />
        buttons: "Ja|Nein",<br />
        title: &#36;"DEBUG Trigger #32770",<br />
        secondsTimeout: 60);<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.libreautomate.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1351" target="_blank" title="">Confirmation nIO after dragging window pos.PNG</a> (Size: 7.76 KB / Downloads: 225)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.libreautomate.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1352" target="_blank" title="">Confirmation OK.PNG</a> (Size: 7.71 KB / Downloads: 252)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[using latest nuget-package LibreAutomate 1.2.0<br />
Infotext showing seconds until window is autoclosed is not redrawn after dragging window to new position.<br />
<br />
      var result = dialog.showInfo(<br />
        text1: &#36;"Confirmation triggered correct?",<br />
        text2: &#36;"Yes={c2.ControlText} No={c3.ControlText} Message={c1.ControlText}",<br />
        buttons: "Ja|Nein",<br />
        title: &#36;"DEBUG Trigger #32770",<br />
        secondsTimeout: 60);<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.libreautomate.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1351" target="_blank" title="">Confirmation nIO after dragging window pos.PNG</a> (Size: 7.76 KB / Downloads: 225)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.libreautomate.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1352" target="_blank" title="">Confirmation OK.PNG</a> (Size: 7.71 KB / Downloads: 252)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[no output]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7698</link>
			<pubDate>Sun, 28 Apr 2024 13:16:46 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1516">Davider</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7698</guid>
			<description><![CDATA[string[] a4 = { "a", "b" };<br />
<br />
Console.Write(a4[^1]); //no output]]></description>
			<content:encoded><![CDATA[string[] a4 = { "a", "b" };<br />
<br />
Console.Write(a4[^1]); //no output]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Autotexts loses spaces]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7691</link>
			<pubDate>Mon, 22 Apr 2024 06:56:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1471">MBaas</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7691</guid>
			<description><![CDATA[I recently (I think it started with 1.1.8, but I was too busy to look into it at the time.) noticed a problem with Autotexts: any texts that include one or more space characters "arrive" w/o the spaces.<br />
<br />
For example:<br />
<span style="font-family: Courier New,Courier,monospace;" class="mycode_font">tr["#mb"]  = "Michael Baas";</span><br />
<br />
prints: "Michael Baas"<br />
<br />
or<br />
<br />
<span style="font-family: Courier New,Courier,monospace;" class="mycode_font">tr["#pt"] = "C:\\Data\\MB Privat\\Michael\\Profil Michael Baas.docx";</span><br />
<br />
prints: "C:\Data\MBPrivat\Michael\ProfilMichaelBaas.docx"]]></description>
			<content:encoded><![CDATA[I recently (I think it started with 1.1.8, but I was too busy to look into it at the time.) noticed a problem with Autotexts: any texts that include one or more space characters "arrive" w/o the spaces.<br />
<br />
For example:<br />
<span style="font-family: Courier New,Courier,monospace;" class="mycode_font">tr["#mb"]  = "Michael Baas";</span><br />
<br />
prints: "Michael Baas"<br />
<br />
or<br />
<br />
<span style="font-family: Courier New,Courier,monospace;" class="mycode_font">tr["#pt"] = "C:\\Data\\MB Privat\\Michael\\Profil Michael Baas.docx";</span><br />
<br />
prints: "C:\Data\MBPrivat\Michael\ProfilMichaelBaas.docx"]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[First Startup Issues]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7686</link>
			<pubDate>Mon, 08 Apr 2024 21:07:20 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1516">Davider</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7686</guid>
			<description><![CDATA[After numerous tests, whenever I cold start my project files for the first time, I encountered some issues:<br />
<br />
1. Occasionally, a single mouse click would register as a double-click.<br />
2. Sometimes, window movement operations would fail.<br />
<br />
I checked the code but couldn't find any issues. These problems only occur during the first cold start; they don't reappear after the second time.<br />
<hr class="mycode_hr" />
Addendum<br />
Regarding issue 1, my click handling code is written within a class file, not in the main file.<br />
It's akin to the problem described in the following link: <br />
<a href="https://www.libreautomate.com/forum/showthread.php?tid=7618&amp;pid=37754#pid37754" target="_blank" rel="noopener" class="mycode_url">https://www.libreautomate.com/forum/show...4#pid37754</a><br />
<br />
It seems that some operations written within class files are unstable; sometimes, I have to add a delay(<span style="font-weight: bold;" class="mycode_b">200.ms;</span>) before the first line of code in a method within the class.<br />
<hr class="mycode_hr" />
3. The first line of my main file is as follows, its role is <span style="font-weight: bold;" class="mycode_b"><span style="color: #c0392b;" class="mycode_color">exeProgram</span></span>, and it references a class file <span style="color: #8e44ad;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">_Chrome3</span></span>. If I modify this class file, do I need to click its <span style="font-weight: bold;" class="mycode_b">compile button</span> every time? If I don't click it, It seems that in some cases, this doesn't work.<br />
<span style="font-weight: bold;" class="mycode_b">/*/ role <span style="color: #c0392b;" class="mycode_color">exeProgram</span>; c <span style="color: #8e44ad;" class="mycode_color">_Chrome3</span>; /*/</span>]]></description>
			<content:encoded><![CDATA[After numerous tests, whenever I cold start my project files for the first time, I encountered some issues:<br />
<br />
1. Occasionally, a single mouse click would register as a double-click.<br />
2. Sometimes, window movement operations would fail.<br />
<br />
I checked the code but couldn't find any issues. These problems only occur during the first cold start; they don't reappear after the second time.<br />
<hr class="mycode_hr" />
Addendum<br />
Regarding issue 1, my click handling code is written within a class file, not in the main file.<br />
It's akin to the problem described in the following link: <br />
<a href="https://www.libreautomate.com/forum/showthread.php?tid=7618&amp;pid=37754#pid37754" target="_blank" rel="noopener" class="mycode_url">https://www.libreautomate.com/forum/show...4#pid37754</a><br />
<br />
It seems that some operations written within class files are unstable; sometimes, I have to add a delay(<span style="font-weight: bold;" class="mycode_b">200.ms;</span>) before the first line of code in a method within the class.<br />
<hr class="mycode_hr" />
3. The first line of my main file is as follows, its role is <span style="font-weight: bold;" class="mycode_b"><span style="color: #c0392b;" class="mycode_color">exeProgram</span></span>, and it references a class file <span style="color: #8e44ad;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">_Chrome3</span></span>. If I modify this class file, do I need to click its <span style="font-weight: bold;" class="mycode_b">compile button</span> every time? If I don't click it, It seems that in some cases, this doesn't work.<br />
<span style="font-weight: bold;" class="mycode_b">/*/ role <span style="color: #c0392b;" class="mycode_color">exeProgram</span>; c <span style="color: #8e44ad;" class="mycode_color">_Chrome3</span>; /*/</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[find UI element Smaller]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7679</link>
			<pubDate>Tue, 02 Apr 2024 22:16:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1516">Davider</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7679</guid>
			<description><![CDATA[This may not be a bug but rather some special cases.<br />
<br />
find UI element Smaller feature:<br />
<br />
1. It does not work on certain toolbar controls and can only be manually expanded.<br />
<br />
2. It also does not work on certain right-click menus; even if the node is manually expanded, detailed information cannot be obtained because the menu is closed.<br />
<span style="font-weight: bold;" class="mycode_b">For 2</span>: Is there any other way to obtain information about the menu items?<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.libreautomate.com/forum/images/attachtypes/image.png" title="GIF Image" border="0" alt=".gif" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1344" target="_blank" title="">LA.gif</a> (Size: 213.25 KB / Downloads: 198)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[This may not be a bug but rather some special cases.<br />
<br />
find UI element Smaller feature:<br />
<br />
1. It does not work on certain toolbar controls and can only be manually expanded.<br />
<br />
2. It also does not work on certain right-click menus; even if the node is manually expanded, detailed information cannot be obtained because the menu is closed.<br />
<span style="font-weight: bold;" class="mycode_b">For 2</span>: Is there any other way to obtain information about the menu items?<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.libreautomate.com/forum/images/attachtypes/image.png" title="GIF Image" border="0" alt=".gif" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1344" target="_blank" title="">LA.gif</a> (Size: 213.25 KB / Downloads: 198)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Garbled characters appeared when Converting COM type library to .NET assembly]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7676</link>
			<pubDate>Sat, 30 Mar 2024 07:16:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1516">Davider</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7676</guid>
			<description><![CDATA[Garbled characters appeared when Converting COM type library to .NET assembly, as shown in the figure below.<br />
<br />
Also, how can I use Word in LA?<br />
<br />
using Word = Microsoft.Office.Interop.Word; //err<br />
<br />
<a href="https://i.ibb.co/gTR5Yf3/AA.jpg" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/gTR5Yf3/AA.jpg</a>]]></description>
			<content:encoded><![CDATA[Garbled characters appeared when Converting COM type library to .NET assembly, as shown in the figure below.<br />
<br />
Also, how can I use Word in LA?<br />
<br />
using Word = Microsoft.Office.Interop.Word; //err<br />
<br />
<a href="https://i.ibb.co/gTR5Yf3/AA.jpg" target="_blank" rel="noopener" class="mycode_url">https://i.ibb.co/gTR5Yf3/AA.jpg</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The cursor automatically jumps to the end of the line.]]></title>
			<link>https://www.libreautomate.com/forum/showthread.php?tid=7667</link>
			<pubDate>Tue, 26 Mar 2024 00:01:19 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.libreautomate.com/forum/member.php?action=profile&uid=1516">Davider</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.libreautomate.com/forum/showthread.php?tid=7667</guid>
			<description><![CDATA[Recently, I've often encountered a problem. When I add parameters to a function, after typing a certain letter, the text insertion point jumps to the end of the line.<br />
<br />
For example, in the code below, when I input the letter "l", the insertion point jumps to the end of the line. This happened several times, then suddenly returned to normal. There's no pattern to it, and I can't reproduce it.<br />
<br />
<span style="font-size: x-large;" class="mycode_size">var w2 = wnd.find(1, "ChatGPT - Google Chrome", "Chrome_WidgetWin_1").Activate();<br />
var e3 = w2.Elm["web:LINK", "New chat",<span style="color: #ff0000;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">f</span></span>].Find(3);<br />
e3.MouseClick();</span>]]></description>
			<content:encoded><![CDATA[Recently, I've often encountered a problem. When I add parameters to a function, after typing a certain letter, the text insertion point jumps to the end of the line.<br />
<br />
For example, in the code below, when I input the letter "l", the insertion point jumps to the end of the line. This happened several times, then suddenly returned to normal. There's no pattern to it, and I can't reproduce it.<br />
<br />
<span style="font-size: x-large;" class="mycode_size">var w2 = wnd.find(1, "ChatGPT - Google Chrome", "Chrome_WidgetWin_1").Activate();<br />
var e3 = w2.Elm["web:LINK", "New chat",<span style="color: #ff0000;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">f</span></span>].Find(3);<br />
e3.MouseClick();</span>]]></content:encoded>
		</item>
	</channel>
</rss>