<?xml version="1.0"?>
<doc>
    <assembly>
        <name>JetBrains.Profiler</name>
    </assembly>
    <members>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons">
             <summary>
            	<para>
            		<para>Autogenerated identifier classes and identifier objects to Themed Icons registered with <see cref="T:JetBrains.Application.Icons.IThemedIconManager"></see>.</para>
            		<para>Identifier classes should be used in attributes, XAML, or generic parameters. Where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected, use the identifier object in the <c>Id</c> field of the identifier class.</para>
            	</para>
            </summary>
            <remarks>
            	<para>This code was compile-time generated to support Themed Icons in the JetBrains application.</para>
            	<para>It has two primary goals: load the icons of this assembly to be registered with <see cref="T:JetBrains.Application.Icons.IThemedIconManager"></see> so that they were WPF-accessible and theme-sensitive; and emit early-bound accessors for referencing icons in codebehind in a compile-time-validated manner.</para>
            	<h1>XAML</h1>
            	<para>For performance reasons, the icons are not individually exposed with application resources. There is a custom markup extension to bind an image source in markup.</para>
            	<para>To use an icon from XAML, set an <see cref="T:System.Windows.Media.ImageSource"></see> property to the <see cref="T:System.CodeDom.CodeTypeReference"></see> markup extension, which takes an icon identifier class (nested in <see cref="!:JetBrains.Profiler.Windows.Resources.AppkindThemedIcons"></see> class) as a parameter.</para>
            	<para>Example:</para>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+Trinity}" /&gt;</code>
            	<h1>Attributes</h1>
            	<para>Sometimes you have to reference an icon from a type attriute when you're defining objects in code. Typical examples are Options pages and Tool Windows.</para>
            	<para>To avoid the use of string IDs which are not validated very well, we've emitted identifier classes to be used with <c>typeof()</c> expression, one per each icon. Use the attribute overload which takes a <see cref="T:System.Type"></see> for an image, and choose your icon class from nested classes in the <see cref="!:JetBrains.Profiler.Windows.Resources.AppkindThemedIcons"></see> class.</para>
            	<para>Example:</para>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.Trinity))]</code>
            	<h1>CodeBehind</h1>
            	<para>In codebehind, we have two distinct tasks: (a) specify some icon in the APIs and (b) render icon images onscreen.</para>
            	<para>On the APIs stage you should only manipulate icon identifier objects (of type <see cref="T:JetBrains.UI.Icons.IconId"></see>, statically defined in <see cref="!:JetBrains.Profiler.Windows.Resources.AppkindThemedIcons"></see> in <c>Id</c> fields). Icon identifier classes (nested in <see cref="!:JetBrains.Profiler.Windows.Resources.AppkindThemedIcons"></see>) should be turned into icon identifier objects as early as possible. Rendering is about getting an <see cref="T:System.Windows.Media.ImageSource"></see> to assign to WPF, or <see cref="T:System.Drawing.Bitmap"></see> to use with GDI+ / Windows Forms.</para>
            	<para>You should turn an identifier object into a rendered image as late as possible. The identifier is static and lightweight and does not depend on the current theme, while the image is themed and has to be loaded or generated/rasterized. You need an <see cref="T:JetBrains.Application.Icons.IThemedIconManager"></see> instance to get the image out of an icon identifier object. Once you got the image, you should take care to change it with theme changes — either by using a live image property, or by listening to the theme change event. See <see cref="T:JetBrains.Application.Icons.IThemedIconManager"></see> and its extensions for the related facilities.</para>
            	<para>Example:</para>
            	<code>// Getting IconId identifier object to use with APIs
            IconId iconid = AppkindThemedIcons.Trinity.Id;</code>
            	<code>// Getting IconId out of an Icon Identifier Class type
            IconId iconid = new JetBrains.Application.Icons.CompiledIconsCs.CompiledIconCsId(typeof(AppkindThemedIcons.Trinity));</code>
            	<code>// Getting image for screen rendering by IconId
            themediconmanager.Icons[icnoid]</code>
            	<code>// Getting image for screen rendering by Icon Identifier Class
            themediconmanager.GetIcon&lt;AppkindThemedIcons.Trinity&gt;()</code>
            	<h1>Icons Origin</h1>
            	<para>This code was generated by a pre-compile build task from a set of input files which are XAML files adhering to a certain convention, as convenient for exporting them from the Illustrator workspace, plus separate PNG files with raster icons. In the projects, these files are designated with <c>ThemedIconsXamlV3</c> and <c>ThemedIconPng</c> build actions and do not themselves get into the output assembly. All of such files are processed, vector images for different themes of the same icon are split and combined into the single list of icons in this assembly. This list is then written into the genearted XAML file (compiled into BAML within assembly), and serves as the source for this generated code.</para>
            </remarks>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Azure">
             <summary>
            	<para>
            		<para>Azure Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Azure"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Azure.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                              `              
                            :~ -`            
                         `"=!``==.           
                       -;\\=` ;\\=-          
                      ~\\\=` _\\\\\,         
                    `;\\\=. .\\\\\\\^        
                   `!\\\=.   -!\\\\\\~       
                  .=\\\\-      _\\\\\\;`     
                 -=\\\\-        `~\\\\\!`    
                `:::::-        ``.~\\\\\=-   
                        ``.-:_____________`  
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:SocadohThemedIconsThemedIcons+Azure}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(SocadohThemedIconsThemedIcons.Azure))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = SocadohThemedIconsThemedIcons.Azure.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;SocadohThemedIconsThemedIcons.Azure&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Azure.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Azure">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Azure.Load_Default">
            <summary>Loads the image for Themed Icon Azure theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Azure.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Azure.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.AnyDotNetMin">
             <summary>
            	<para>
            		<para>AnyDotNetMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.AnyDotNetMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.AnyDotNetMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                      -,,,,,:`       -:-:,.  
                   `!s1111)T11*    `71==1T`  
                  .vTT1v-)1"z11!  `71T\1s`   
                 -{!+1?` :1J:111. !1[?1s`    
                `s;:1l`   71~=11!`[1F1s`     
                Lc J1_    :[[-c1{c111)`      
               :1-^L,      :c[+T111)^        
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+AnyDotNetMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.AnyDotNetMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.AnyDotNetMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.AnyDotNetMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.AnyDotNetMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.AnyDotNetMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.AnyDotNetMin.Load_Color">
            <summary>Loads the image for Themed Icon AnyDotNetMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.AnyDotNetMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon AnyDotNetMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.CoreclrMin">
             <summary>
            	<para>
            		<para>Coreclr Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Coreclr"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.CoreclrMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                       .=clyppVY|\-          
                    .+ZNND92vvuXDNNbr-       
                   rWND7:        :cmNN7`     
                  +vvr`            `lNNy`    
                  `--`               LNNT    
                 _++++~              `NND    
                 ~++++;              `NND    
                  `::.               !NNl    
                  =++~              rNN9`    
                  `lNNb+.        `!ZNN2`     
                    :7#NNXu7++TIZNNDs_       
                       :|[VdNNmEIT"          
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+Coreclr}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.Coreclr))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.Coreclr.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.Coreclr&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>CoreclrMin Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.CoreclrMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.CoreclrMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                       _\|YyppV[|+^`         
                    "sDNN#X2vvuZmNN8[~`      
                  +DNNy!`        `;2WN8T`    
                `9NNy.              `[NNm.   
                ^:``                  !WNm`  
                :;!!;:                 \NNs  
               ~++++++;                `NND  
               ;++++++!                `NND  
                _=++/^`                ;NNI  
               `:`                    "DND.  
                .mNNl`               cNND:   
                 `7WNDs"          :7#NNu.    
                   `!yNNDEI7++T[VDNNZ+.      
                      `!TIEdNNmZI7=.         
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+CoreclrMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.CoreclrMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.CoreclrMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.CoreclrMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisExpressMin">
             <summary>
            	<para>
            		<para>IisExpressMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisExpressMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisExpressMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             ````````````````````````````````
             ``BBBBBBBBBBBBBBBBBBBBBBBBBBBB``
             ``BBBBBBBBBBBBBBBBBBBBBBBBBBBB``
             ``BBBB                    BBBB``
             ``BBBB      BBBBBBBB      BBBB``
             ``BBBB      BB    BB      BBBB``
             ``BBBB      BBBBBBBB      BBBB``
             ``BBBB      BBBB  BB      BBBB``
             ``BBBB      BBBBBBBB      BBBB``
             ``BBBB                    BBBB``
             ``BBBBBBBBBBBBBBBBBBBBBBBBBBBB``
             ``BBBBBBBBBBBBBBBBBBBBBBBBBBBB``
             ``````````````BBBB``````````````
             ``````````````BBBB``````````````
                   ``BBBBBBBBBBBBBBBB``      
                   ````````````````````      
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+IisExpressMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.IisExpressMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.IisExpressMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.IisExpressMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisExpressMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisExpressMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisExpressMin.Load_Color">
            <summary>Loads the image for Themed Icon IisExpressMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisExpressMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon IisExpressMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisMin">
             <summary>
            	<para>
            		<para>IisMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                     NNNNNNNNNNNNNNNN        
                     NNNNNNNNNNNNNNNN        
                     NNNN        NNNN        
                     NNNNNNNNNNNNNNNN        
                     NNNN        NNNN        
                     NNNNNNNNNNNNNNNN        
                     NNNNNNNNNNNNNNNN        
                     NNNNNNNNNNNNNNNN        
                     NNNNNNNNNNNNNNNN        
                     NNNNNNNNNNNNNNNN        
                     NNNNNNNNNNNNNNNN        
                     NNNNNNNNNN  NNNN        
                     NNNNNNNNNNNNNNNN        
                     NNNNNNNNNNNNNNNN        
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+IisMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.IisMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.IisMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.IisMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisMin.Load_Color">
            <summary>Loads the image for Themed Icon IisMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.IisMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon IisMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MetroMin">
             <summary>
            	<para>
            		<para>MetroMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MetroMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MetroMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                       _\|{ebba[|+^          
                    "sDbL!^:``-^;?Z8[~       
                  +Dbr-         `-".*X8T`    
                `9W/   .:  +Tu9DNNN   ;Dm.   
                bW^  #NNN  NNNNNNNN    :Dm`  
               rN?   NNNN  NNNNNNNN     ;Ns  
               ZN-                      `ND  
               9N.   NNNN  NNNNNNNN      ND  
               |N/   NNNN  NNNNNNNN     ^NC  
               `#D:  vuXD  NNNNNNNN    .mD.  
                .mD^       `:^!Lleb   :mD:   
                 `TW5;`             ~fNu.    
                   `!eW2;"-`  `-_;[8Z+.      
                      `;TCkdNNmZCT=.         
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+MetroMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.MetroMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.MetroMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.MetroMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MetroMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MetroMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MetroMin.Load_Color">
            <summary>Loads the image for Themed Icon MetroMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MetroMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon MetroMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNet">
             <summary>
            	<para>
            		<para>RemoteAnyDotNet Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNet"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNet.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                    ``-~;;;;,-`     `-":~;,` 
                   `!sfufuJcuuL`` `.Jur;u].` 
                 `-lTTuJ-?u~zuuL```Tus!u]-`  
                `-]!+uc``:uY,uuu:`;uu?u]-`   
               ``~:-;~````^;=;uur`FuCu]-`    
               `?`B+++++++B`u:+ufLuuuJ.`     
              `.;`B       B`)frvuuuv;`       
             `B++`B       B`````````         
             `B  `rrrrBrrrr`                 
             `B    `rrrrr`                   
             `rrrrBrrrr`                     
               `rrrrr`                       
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteAnyDotNet}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteAnyDotNet))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteAnyDotNet.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteAnyDotNet&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNet.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNet">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNet.Load_Color">
            <summary>Loads the image for Themed Icon RemoteAnyDotNet theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNet.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteAnyDotNet.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNetMin">
             <summary>
            	<para>
            		<para>RemoteAnyDotNetMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNetMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNetMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                     `-""""":.`     `-,-""-` 
                  ``={uuuuT7uur`` `.Ju*+uv`` 
                 `-s77us:Tu~Yuu\```Juv+ul.`  
                `:]/ruc``,uz_uuu-`\ufcul.`   
             ``````````````````u\.fuCul.`    
             ``BBBBBBBBBBBBBB``u]|uuuT.`     
             ``BB          BB``vuuuT~`       
             ``BB          BB```````         
             ``BB          BB``              
             ``BBBBBBBBBBBBBB``              
             ``````BBBBBB``````              
                 ``````````                  
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteAnyDotNetMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteAnyDotNetMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteAnyDotNetMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteAnyDotNetMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNetMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNetMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNetMin.Load_Color">
            <summary>Loads the image for Themed Icon RemoteAnyDotNetMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteAnyDotNetMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteAnyDotNetMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclr">
             <summary>
            	<para>
            		<para>RemoteCoreclr Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclr"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclr.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                      `-+TFVddE17+:`         
                   `-rXBBDbjss24DBBqL:`      
                  `cMBDJ"````````,T#BBJ``    
                 `rssL.`````````````FBBV``   
                ```-:`` `````````````)BB7`   
               ``^rrrr;```````````````BBD``  
               ``:____:```````````````BB8``  
                ``B+++++++B``````````\BBF`   
                ``B       B`````````cBBb.`   
             `B++`B       B``````.\XBBj.`    
             `B  `rrrrBrrrr`rr7uXBB8}^`      
             `B    `rrrrr`EOBB#Zu7~`         
             `rrrrBrrrr`   ````              
               `rrrrr`                       
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteCoreclr}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteCoreclr))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteCoreclr.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteCoreclr&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclr.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclr">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclr.Load_Color">
            <summary>Loads the image for Themed Icon RemoteCoreclr theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclr.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteCoreclr.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclrMin">
             <summary>
            	<para>
            		<para>RemoteCoreclrMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclrMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclrMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                     ``^+71VddEI7r~``        
                  ``~}8BBD4jss2X#BB8I;``     
                 `rDBBV\.`````````!jMB87``   
               `.bBBV-``````````````.IBB#-`  
              ``~:-```````````````````\MB#.` 
              ``_!==!"`````````````````+BB}` 
             ``;rrrrrr!`````````````````BBD``
             ```````````````````````````BB8``
             ``BBBBBBBBBBBBBB``````````!BBu` 
             ``BB          BB`````````~8B8-` 
             ``BB          BB````````TBB8,`  
             ``BB          BB`````"JDBB2-`   
             ``BBBBBBBBBBBBBB``IEDBBXr-`     
             ``````BBBBBB``````XuJ+-`        
                 ``````````````              
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteCoreclrMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteCoreclrMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteCoreclrMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteCoreclrMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclrMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclrMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclrMin.Load_Color">
            <summary>Loads the image for Themed Icon RemoteCoreclrMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteCoreclrMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteCoreclrMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIis">
             <summary>
            	<para>
            		<para>RemoteIis Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIis"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIis.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                  `````````````````````      
                  ``BBBBBBBBBBBBBBBBB``      
                  ``BBB"""""""""""BBB``      
                  ``BBB"""""""""""BBB``      
                  ``BBBBBBBBBBBBBBBBB``      
                  ``BBB```````````BBB``      
                  ``BBBBBBBBBBBBBBBBB``      
                  ``BBBBBBBBBBBBBBBBB``      
                  ``????????BBBBBBBBB``      
                 `B+++++++B`BBBBBBBBB``      
                 `B       B`BBBBBBBBB``      
             `B++`B       B`BBBBBBBBB``      
             `B  `rrrrBrrrr`BBB"""BBB``      
             `B    `rrrrr`BBBBB"""BBB``      
             `rrrrBrrrr`BBBBBBBBBBBBB``      
               `rrrrr``````````````````      
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteIis}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteIis))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteIis.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteIis&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIis.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIis">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIis.Load_Color">
            <summary>Loads the image for Themed Icon RemoteIis theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIis.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteIis.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpress">
             <summary>
            	<para>
            		<para>RemoteIisExpress Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpress"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpress.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
             ``rrrrrrrrrrrrrrrrrrrrrrrrrrrr``
             ``BBBBBBBBBBBBBBBBBBBBBBBBBBBB``
             ``BBB      `rrrrrrrr`      BBB``
             ``BBB      `BB""""BB`      BBB``
             ``BBB      `BB""""BB`      BBB``
             ``BBB      `BBBBBBBB`      BBB``
             ``BBB      `BBBBBBBB`      BBB``
             ``BB?      `???BBBBB`      BBB``
             ``BB`B+++++++B`BB"BB`      BBB``
             ``??`B       B`rrrrr`      BBB``
             `B++`B       B`BBBBBBBBBBBBBBB``
             `B  `rrrrBrrrr`BBBBrrrrrrrrrrr``
             `B    `rrrrr`BBBBBBrrrrr``      
             `rrrrBrrrr`rrrrrrrrrrrrr``      
               `rrrrr`                       
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteIisExpress}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteIisExpress))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteIisExpress.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteIisExpress&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpress.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpress">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpress.Load_Color">
            <summary>Loads the image for Themed Icon RemoteIisExpress theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpress.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteIisExpress.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpressMin">
             <summary>
            	<para>
            		<para>RemoteIisExpressMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpressMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpressMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             ````````````````````````````````
             ``BBBBBBBBBBBBBBBBBBBBBBBBBBBB``
             ``BBBBBBBBBBBBBBBBBBBBBBBBBBBB``
             ``BBBB                    BBBB``
             ``BBBB      BBBBBBBB      BBBB``
             ``BBBB      BB    BB      BBBB``
             ``BBBB      BBBBBBBB      BBBB``
             ``BBBB      BBBB  BB      BBBB``
             ``````````````````BB      BBBB``
             ``BBBBBBBBBBBBBB``        BBBB``
             ``BB          BB``BBBBBBBBBBBB``
             ``BB          BB``BBBBBBBBBBBB``
             ``BB          BB````````````````
             ``BBBBBBBBBBBBBB````````````````
             ``````BBBBBB``````BBBBBB``      
                 ``````````````````````      
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteIisExpressMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteIisExpressMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteIisExpressMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteIisExpressMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpressMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpressMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpressMin.Load_Color">
            <summary>Loads the image for Themed Icon RemoteIisExpressMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisExpressMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteIisExpressMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisMin">
             <summary>
            	<para>
            		<para>RemoteIisMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                   ````````````````````      
                   ``BBBBBBBBBBBBBBBB``      
                   ``BBBBBBBBBBBBBBBB``      
                   ``BBBB````````BBBB``      
                   ``BBBBBBBBBBBBBBBB``      
                   ``BBBB````````BBBB``      
                   ``BBBBBBBBBBBBBBBB``      
                   ``BBBBBBBBBBBBBBBB``      
             ``````````````````BBBBBB``      
             ``BBBBBBBBBBBBBB``BBBBBB``      
             ``BB          BB``BBBBBB``      
             ``BB          BB``BBBBBB``      
             ``BB          BB````BBBB``      
             ``BBBBBBBBBBBBBB``BBBBBB``      
             ``````BBBBBB``````BBBBBB``      
                 ``````````````````````      
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteIisMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteIisMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteIisMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteIisMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisMin.Load_Color">
            <summary>Loads the image for Themed Icon RemoteIisMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteIisMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteIisMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroApp">
             <summary>
            	<para>
            		<para>RemoteMetroApp Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroApp"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroApp.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                     ``^+71VddEI7r~``        
                  ``~}8q)/;:--:~=cX8I;``     
                 `rDqL:````````````-r487``   
               `.bM+```````````-_;\```!8#-`  
              ``qM~```_;+T`ybDBBBBB````:8#.` 
              `LBc````BBBB`BBBBBBBB`````!B}` 
              `XB:````BBBB`BBBBBBBB``````BD``
              `bB`````____`_rrrrrrr``````B8``
              `7B`B+++++++B`BBBBBBB`````;Bu` 
              ``+`B       B`DBBBBBB````-#8-` 
             `B++`B       B```-:";+```"#8,`  
             `B  `rrrrBrrrr`````````;uB2-`   
             `B    `rrrrr`:.``.:^!f8Xr-`     
             `rrrrBrrrr`7uZOBB#XuJ+-`        
               `rrrrr`     ````              
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteMetroApp}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteMetroApp))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteMetroApp.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteMetroApp&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroApp.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroApp">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroApp.Load_Color">
            <summary>Loads the image for Themed Icon RemoteMetroApp theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroApp.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteMetroApp.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroMin">
             <summary>
            	<para>
            		<para>RemoteMetroMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                     ``^+71VddEI7r~``        
                  ``~}8q)/;:--:~=cX8I;``     
                 `rDqL:``````````:~-r487``   
               `.bM+```-_``rJ2b8BBB```!8#-`  
              ``qM~``DBBB``BBBBBBBB````:8#.` 
              `LBc```BBBB``BBBBBBBB`````!B}` 
              `XB:```````````````````````BD``
             ``````````````````BBBB``````B8``
             ``BBBBBBBBBBBBBB``BBBB`````;Bu` 
             ``BB          BB``BBBB````-#8-` 
             ``BB          BB``)FVd```"#8,`  
             ``BB          BB```````;uB2-`   
             ``BBBBBBBBBBBBBB``:^!f8Xr-`     
             ``````BBBBBB``````XuJ+-`        
                 ``````````````              
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteMetroMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteMetroMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteMetroMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteMetroMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroMin.Load_Color">
            <summary>Loads the image for Themed Icon RemoteMetroMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMetroMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteMetroMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightApp">
             <summary>
            	<para>
            		<para>RemoteSilverlightApp Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightApp"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightApp.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                     ``-::,^~;;~^:-``        
                   `-^!;_:-.```.'-_;~:``     
                 `:;;:.`````````````.^;:`    
               ``~!~``````````````````"!"`   
              ``~!"``````...```````.-,;!"``  
              `:!;:^;!;~^^^;;;;~^;!!!!;:``   
              `~!!;_-``````````-~!;:-`````   
              `;!:``-::``````-~!;-``:,^^^,-``
              `"!`B+++++++B`^!!:`:~!;_-``    
              ``:`B       B`!!:`,!!^``       
             `B++`B       B`!^`-!!:`         
             `B  `rrrrBrrrr`!-`~^.`          
             `B    `rrrrr`!!!.``             
             `rrrrBrrrr`^;!;:``              
               `rrrrr`    ```                
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteSilverlightApp}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteSilverlightApp))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteSilverlightApp.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteSilverlightApp&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightApp.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightApp">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightApp.Load_Color">
            <summary>Loads the image for Themed Icon RemoteSilverlightApp theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightApp.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteSilverlightApp.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightMin">
             <summary>
            	<para>
            		<para>RemoteSilverlightMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                      `--::"^;~^_:-``        
                   `-^;;":--.`..-:";^-`      
                 `:;;,'`````````````-;;:`    
               ``~!~``````````````````~!:`   
              ``~!"`````````````````-,;!:`   
              `:!;:";!!;;;;;;;;;~;!!!!;:``   
              `~!!;_-``````````-~!;,-````    
             ``````````````````!~-``::"^^:-` 
             ``BBBBBBBBBBBBBB``:`-;!;"-```   
             ``BB          BB```_!!"``       
             ``BB          BB``-!;:`         
             ``BB          BB``;".`          
             ``BBBBBBBBBBBBBB```             
             ``````BBBBBB``````              
                 ````````````                
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteSilverlightMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteSilverlightMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteSilverlightMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteSilverlightMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightMin.Load_Color">
            <summary>Loads the image for Themed Icon RemoteSilverlightMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteSilverlightMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteSilverlightMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneApp">
             <summary>
            	<para>
            		<para>RemoteStandaloneApp Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneApp"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneApp.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
             ``::::::::::::::::::::::::::::``
             ``!!!!!!!!!!!!!!!!!!  !  !  !!``
             ``!!------------------------!!``
             ``!!                        !!``
             ``!!                        !!``
             ``!!                        !!``
             ``!!                        !!``
             ``!!`B+++++++B`             !!``
             ``::`B       B`             !!``
             `B++`B       B`             !!``
             `B  `rrrrBrrrr`-------------!!``
             `B    `rrrrr`:::::::::::::::::``
             `rrrrBrrrr`                     
               `rrrrr`                       
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteStandaloneApp}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteStandaloneApp))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteStandaloneApp.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteStandaloneApp&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneApp.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneApp">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneApp.Load_Color">
            <summary>Loads the image for Themed Icon RemoteStandaloneApp theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneApp.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteStandaloneApp.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneMin">
             <summary>
            	<para>
            		<para>RemoteStandaloneMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
             ````````````````````````````````
             ``!!!!!!!!!!!!!!!!!!!!!!!!!!!!``
             ``!!!!!!!!!!!!!!!!  !!  !!  !!``
             ``!!!!!!!!!!!!!!!!!!!!!!!!!!!!``
             ``!!                        !!``
             ``!!                        !!``
             ``!!                        !!``
             ``````````````````          !!``
             ``BBBBBBBBBBBBBB``          !!``
             ``BB          BB``          !!``
             ``BB          BB``          !!``
             ``BB          BB``!!!!!!!!!!!!``
             ``BBBBBBBBBBBBBB````````````````
             ``````BBBBBB``````              
                 ``````````                  
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteStandaloneMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteStandaloneMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteStandaloneMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteStandaloneMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneMin.Load_Color">
            <summary>Loads the image for Themed Icon RemoteStandaloneMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteStandaloneMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteStandaloneMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfMin">
             <summary>
            	<para>
            		<para>RemoteWcfMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                   ```````      ```````      
                 `.;rr!:`       ``:!rr;.`    
               `.;rr!:`::```::```::`:!rr;.`  
             ```````````````````;rr!``"rrr"``
             ``BBBBBBBBBBBBBB````,,..;rr!:`  
             ``BB          BB`` ``.;rr!:`    
             ``BB          BB`` ```````      
             ``BB          BB``              
             ``BBBBBBBBBBBBBB``              
             ``````BBBBBB``````              
                 ``````````                  
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteWcfMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteWcfMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteWcfMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteWcfMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfMin.Load_Color">
            <summary>Loads the image for Themed Icon RemoteWcfMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteWcfMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfServiceApp">
             <summary>
            	<para>
            		<para>RemoteWcfServiceApp Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfServiceApp"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfServiceApp.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                  `.""":``      ``:""".`     
                `.;rr!:``       ```:!rr;.`   
              `.;rr!:`:!="`:!="`:!="`:!rr;.` 
              `:!"":``-__-`-++~`"++~`.;rr!:` 
                ``B+++++++B```   ``.;rr!:`   
                 `B       B`    ``.""":`     
             `B++`B       B`                 
             `B  `rrrrBrrrr`                 
             `B    `rrrrr`                   
             `rrrrBrrrr`                     
               `rrrrr`                       
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteWcfServiceApp}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteWcfServiceApp))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteWcfServiceApp.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteWcfServiceApp&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfServiceApp.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfServiceApp">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfServiceApp.Load_Color">
            <summary>Loads the image for Themed Icon RemoteWcfServiceApp theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWcfServiceApp.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteWcfServiceApp.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDev">
             <summary>
            	<para>
            		<para>RemoteWebDev Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDev"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDev.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                     ``^+71VddEI7r~``        
                  ``~}#1+;uT+Trj!+sOI;``     
                 `rDD=``:j.`;r``u"``;O87``   
               `.bM!-\Lcq:``;r``-4Tr+:^D#-`  
              ``qD:````b"^;+JIr;~_Z````-b#.` 
              `LB+````!c````;r````!L````~B}` 
              `XM~____I+____cs____;E____"DD``
              `b8-----;:----cs____;Z_____d8``
              `7B`B+++++++B`;r````;)````-Bu` 
              ``+`B       B`;r````V-````Z8-` 
             `B++`B       B`Iy!\=uy:``_O8,`  
             `B  `rrrrBrrrr`;r``7;`^}2M2-`   
             `B    `rrrrr`J\!L;s^~LbXr-`     
             `rrrrBrrrr`7uZOMM#XuJ+-`        
               `rrrrr`     ````              
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteWebDev}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteWebDev))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteWebDev.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteWebDev&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDev.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDev">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDev.Load_Color">
            <summary>Loads the image for Themed Icon RemoteWebDev theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDev.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteWebDev.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDevMin">
             <summary>
            	<para>
            		<para>RemoteWebDevMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDevMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDevMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                     ``"!rsj442sr!"``        
                   `"JOuc!yss7Tj!cuOJ"`      
                 `\DD\``:2-`rr`.2-``\DD\`    
                .4M!,+c+Z:``rr``-Zr)+,=MX.`  
               `4D:````X_~==yu!!~"4````_D4`  
              `rB+````=+````r;````c!````+Br` 
              `XM:----u;----T+----!F----:MX` 
             ``````````````````___+u_____84` 
             ``BBBBBBBBBBBBBB`````+=````_B7` 
             ``BB          BB`````X````.q#`` 
             ``BB          BB``=+yI-``~D#-`  
             ``BB          BB```7^`;1jB}.    
             ``BBBBBBBBBBBBBB``7"~TdXr-`     
             ``````BBBBBB``````ZuJ+-`        
                 ``````````````              
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteWebDevMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteWebDevMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteWebDevMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteWebDevMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDevMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDevMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDevMin.Load_Color">
            <summary>Loads the image for Themed Icon RemoteWebDevMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWebDevMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteWebDevMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsService">
             <summary>
            	<para>
            		<para>RemoteWindowsService Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsService"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsService.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                      `--`                   
                 ``   ^rr;`  ``              
                .+r/~~rrrr;~=r+-             
                 ^rrr+,--:+rrr;`             
               .:;rr:      .rr;:'`           
             `"rrrrr        =rrrr~`          
              `:"!rr.      `rr!":`           
                 ,rrr!-``-;rrr^`             
                ._"_::""""::+rr-             
                 `B+++++++B` .`   ";:`"!:    
                 `B       B`   ```!rrrrr;::` 
             `B++`B       B`   "rr+.   `+r+: 
             `B  `rrrrBrrrr`    :r;     ^r~` 
             `B    `rrrrr`     :rrr;.``~r!;" 
             `rrrrBrrrr`          :rr;/r/    
               `rrrrr`            `,'  --    
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteWindowsService}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteWindowsService))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteWindowsService.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteWindowsService&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsService.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsService">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsService.Load_Color">
            <summary>Loads the image for Themed Icon RemoteWindowsService theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsService.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteWindowsService.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsServiceMin">
             <summary>
            	<para>
            		<para>RemoteWindowsServiceMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsServiceMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsServiceMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                      `--`                   
                 ``  `~rr~`  ``              
                .+r=~~rrrr~~=r+-             
                 ^rrr+:--:+rrr;`             
               .:;rr-      -rr;:.`           
             `"rrrrr        +rrrr~`          
              `-,;rr.      `rr;,-`           
                `^rrr;-``-;rrr^`             
             ``````````````````-             
             ``BBBBBBBBBBBBBB``   ^;:`^!-    
             ``BB          BB```--=rrrrr~::` 
             ``BB          BB``"rr+.   `+r/- 
             ``BB          BB`` ,r~     ;r~` 
             ``BBBBBBBBBBBBBB``:r/+;```;+;;_ 
             ``````BBBBBB``````   "rr;/r!    
                 ``````````       `:`  -.    
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+RemoteWindowsServiceMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.RemoteWindowsServiceMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.RemoteWindowsServiceMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.RemoteWindowsServiceMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsServiceMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsServiceMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsServiceMin.Load_Color">
            <summary>Loads the image for Themed Icon RemoteWindowsServiceMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteWindowsServiceMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteWindowsServiceMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightApp">
             <summary>
            	<para>
            		<para>SilverlightApp Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightApp"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightApp.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                       .--:_"^^"_:.          
                    -_;~:-.``````-:~"-       
                  -~;:`             `_~-     
                 ";"`                 :;,    
                ^;:   ```````      `.:~;,    
               -;~-_~;;^___^^^^^_~;;;;~:     
               ";;;:.`         .";^:.`       
               ^;~``_~^`     `";^. `-:___:.  
               :;: `.-^;-  `,;;- -^;;:.`     
               `~;`    ^~`-;;;- :;;,`        
                `~~`   ``^;;;_ .;;-          
                 `:;:` `~;;;;. "_`           
                   `:~_~;;;;;`               
                      .:_~;~:                
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+SilverlightApp}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.SilverlightApp))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.SilverlightApp.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.SilverlightApp&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightApp.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightApp">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightApp.Load_Color">
            <summary>Loads the image for Themed Icon SilverlightApp theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightApp.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon SilverlightApp.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightMin">
             <summary>
            	<para>
            		<para>SilverlightMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                       `.-::_^"_:-.          
                    ._~~:--.````.-,~_.       
                  -~;:`             .^~-     
                 ";"`                 ";:    
                ^;:   ```````       .:;;:    
               -;~-:^;;~^^^^^^^^";;;;;^-     
               ";;;:.`         .^;~:.`       
               ^;~``:~"`     .^;^. `-::__:`  
               :;: `.-^;-  `_;;- -^;;:.`     
               `~;`    ^~ :;;;- :;;,`        
                `~^`   ``^;;;, .;;-          
                 `_;:` `~;;;;` ^,`           
                   `:~,~;;;;;`               
                      .:_~;~:                
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+SilverlightMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.SilverlightMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.SilverlightMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.SilverlightMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightMin.Load_Color">
            <summary>Loads the image for Themed Icon SilverlightMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.SilverlightMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon SilverlightMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.StandaloneMin">
             <summary>
            	<para>
            		<para>StandaloneMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.StandaloneMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.StandaloneMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
             ````````````````````````````````
             ``!!!!!!!!!!!!!!!!!!!!!!!!!!!!``
             ``!!!!!!!!!!!!!!!!  !!  !!  !!``
             ``!!!!!!!!!!!!!!!!!!!!!!!!!!!!``
             ``!!                        !!``
             ``!!                        !!``
             ``!!                        !!``
             ``!!                        !!``
             ``!!                        !!``
             ``!!                        !!``
             ``!!                        !!``
             ``!!!!!!!!!!!!!!!!!!!!!!!!!!!!``
             ````````````````````````````````
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+StandaloneMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.StandaloneMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.StandaloneMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.StandaloneMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.StandaloneMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.StandaloneMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.StandaloneMin.Load_Color">
            <summary>Loads the image for Themed Icon StandaloneMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.StandaloneMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon StandaloneMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTest">
             <summary>
            	<para>
            		<para>UnitTest Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTest"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTest.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                           ``,r7us2sr~``     
                         ``TOBBBBe\Lf88}-`   
                        `,dBBBBBBh    !88!`` 
                       `.24DBBBBBh     -8B;` 
                    ```-~-```"JDBh      sBI``
                 ``;jDBBkBBDj;``~t      EBT``
               ``+8BBBBB1 `"s88+``     )BO-` 
              ``yB$BBBBB1    `SBj`` .+wBI``  
              `=BBBBBBBBC      DB!`_BO):`    
              `7BBBBBBBBC      jBT`````      
              `~BBBBBBBBC     -MB^`          
              ``+MBBBBBBC    ~8M\``          
                `,VBBB0B[~!7DBV:`            
                  `.\sjbn4js=.`              
                       ` `                   
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+UnitTest}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.UnitTest))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.UnitTest.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.UnitTest&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTest.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTest">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTest.Load_Color">
            <summary>Loads the image for Themed Icon UnitTest theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTest.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon UnitTest.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTestMin">
             <summary>
            	<para>
            		<para>UnitTestMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTestMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTestMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                           ``,r7us2sr~``     
                         ``TOBBBBe\Lf88}-`   
                        `,dBBBBBBh    !88!`` 
                       `.24DBBBBBh     -8B;` 
                    ```-~-```"JDBh      sBI``
                 ``;jDBBkBBDj;``~t      EBT``
               ``+8BBBBB1 `"s88+``     )BO-` 
              ``yB$BBBBB1    `SBj`` .+wBI``  
              `=BBBBBBBBC      DB!`_BO):`    
              `7BBBBBBBBC      jBT`````      
              `~BBBBBBBBC     -MB^`          
              ``+MBBBBBBC    ~8M\``          
                `,VBBB0B[~!7DBV:`            
                  `.\sjbn4js=.`              
                       ` `                   
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+UnitTestMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.UnitTestMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.UnitTestMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.UnitTestMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTestMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTestMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTestMin.Load_Color">
            <summary>Loads the image for Themed Icon UnitTestMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnitTestMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon UnitTestMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WcfMin">
             <summary>
            	<para>
            		<para>WcfMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WcfMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WcfMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                  `~++;-          -;++~`     
                `~++;- --   --   -- -;++~`   
               :+++:  ;++! ;++; ;++;  :+++:  
                -;++~``::` `::` `::``~++;-   
                  -;++~`          `~++;-     
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+WcfMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.WcfMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.WcfMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.WcfMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WcfMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WcfMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WcfMin.Load_Color">
            <summary>Loads the image for Themed Icon WcfMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WcfMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon WcfMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDev">
             <summary>
            	<para>
            		<para>WebDev Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDev"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDev.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                       _\|{ebba[|+^          
                    "sm{\;Cc\c+2;=vd[~       
                  +D#;  -2` ;+ `{:  ~d8T`    
                `9W;.!+rb-` ;+ `.Xc+=-_Dm.   
                b#:    k:_;\T[+;":k`   .9m`  
               rN\    ;r    ;+    ;r    "Ns  
               ZW"::::[\::::rv::::;a:::::DD  
               98:::::C!::::rv::::~k:::::bD  
               |N:    ;\    ;+    ^L    .NC  
               `#9`    a`   ;+    e`   `kD.  
                .mD^  -{e=!;[5;!;C5:  :dD:   
                 `TW2{^`_v` ;+  |; _suWu.    
                   `!ebc^:T!;r;v_"r9Z+.      
                      `;TCkdWWmZCT=.         
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+WebDev}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.WebDev))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.WebDev.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.WebDev&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDev.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDev">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDev.Load_Color">
            <summary>Loads the image for Themed Icon WebDev theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDev.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon WebDev.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDevMin">
             <summary>
            	<para>
            		<para>WebDevMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDevMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDevMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                       ,;+v2XXuv+;:          
                    :TdCr;5vvTc2;rCdT:       
                  !#D!` -u. ++ `u. `!D#!     
                `XW;:\r\k-  ++  .k+L\:;WZ`   
                X#:    Z:^;;5C;;":X    :#X   
               +N=    ;\    +;    r;    =N+  
               ZW-````C~````c=````;l````-WZ  
               X8:::::5!::::vr::::=C:::::8X  
               |N:    !=    +;    \;    :N|  
               `#9`   `Z    +;    Z`   `bm`  
                .m#"  .[u\;\[T+;=5[.  "#m.   
                 `sN2{^`;T  +;  |_`^{2Ns`    
                   .+Zbr^;{;r;;T:^cbZ+.      
                      .=TCkmW8mkCT=.         
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+WebDevMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.WebDevMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.WebDevMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.WebDevMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDevMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDevMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDevMin.Load_Color">
            <summary>Loads the image for Themed Icon WebDevMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WebDevMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon WebDevMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WindowsServiceMin">
             <summary>
            	<para>
            		<para>WindowsServiceMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WindowsServiceMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WindowsServiceMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                      `--`                   
                 ``  `~rr~`  ``              
                .+r=~~rrrr~~=r+-             
                 ^rrr+:--:+rrr;`             
               .:;rr-      -rr;:.`           
             `"rrrrr        +rrrr~`          
              `-,;rr.      `rr;,-`           
                `^rrr;-``-;rrr^`             
                -+r+;!rrrr!;+r+-             
                 `'  `;rr;`  .`   ^;:`^!-    
                      `::`     `--=rrrrr~::` 
                               "rr+.   `+r/- 
                                ,r~     ;r~` 
                               :r/+;```;+;;_ 
                                  "rr;/r!    
                                  `:`  -.    
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:AppkindThemedIcons+WindowsServiceMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(AppkindThemedIcons.WindowsServiceMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = AppkindThemedIcons.WindowsServiceMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;AppkindThemedIcons.WindowsServiceMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WindowsServiceMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WindowsServiceMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WindowsServiceMin.Load_Color">
            <summary>Loads the image for Themed Icon WindowsServiceMin theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.WindowsServiceMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon WindowsServiceMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MonoAppMin">
             <summary>
            	<para>
            		<para>MonoApp Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MonoApp"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MonoAppMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               @@@@@@@@@@@@@@@@@@@@@@@@@@@@  
               @@@Dg@@8T_```-~rF68g@@@@@@@@  
               @@k``-+21):`````````.^w@@@@@  
               @@````````:```````````~@@@@@  
               @@gj;``````````:LF)^```@@@@@  
               !.``^)\^.`````````;1Dgg@@@@@  
               ``````````````````````g@@@@@  
               ``````````````````````+@@@@@  
               ```````````````-};````:@@@@@  
               `````````````````!k1"`;@@@@@  
               ``````.+FT"````````-2g@@@@@@  
               ```.LD@@@@@@DF~```````$@@@@@  
               !uB@@@@@@@@@@@@@8F;.`s@@@@@@  
               @@@@@@@@@@@@@@@@@@@@g@@@@@@@  
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:WyrymimThemedIconsThemedIcons+MonoApp}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(WyrymimThemedIconsThemedIcons.MonoApp))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = WyrymimThemedIconsThemedIcons.MonoApp.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;WyrymimThemedIconsThemedIcons.MonoApp&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoAppMin Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MonoAppMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MonoAppMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               @@@@@@@@@@@@@@@@@@@@@@@@@@@@  
               @@@@@@@gk+~~\T2bBg@@@@@@@@@@  
               @@b`-+kMw+`````````~)D@@@@@@  
               @g```````^;``````````"@@@@@@  
               @@ML-`````````.7T!:```@@@@@@  
               7^:\22+_````````~F8@QM@@@@@@  
               ````````````````````!@@@@@@@  
               ``````````````-``````|@@@@@@  
               ``````````````;MT.```-@@@@@@  
               ```````````````:S@8s~+@@@@@@  
               ``````+k6}!.`````.TM@@@@@@@@  
               ``:78@@@@@@@QZr:````-@@@@@@@  
               Sg@@@@@@@@@@@@@@@ms~d@@@@@@@  
               @@@@@@@@@@@@@@@@@@@@@@@@@@@@  
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:WyrymimThemedIconsThemedIcons+MonoAppMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(WyrymimThemedIconsThemedIcons.MonoAppMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = WyrymimThemedIconsThemedIcons.MonoAppMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;WyrymimThemedIconsThemedIcons.MonoAppMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoApp">
             <summary>
            	<para>
            		<para>RemoteMonoApp Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoApp"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoApp.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             ````````````````````````````````
             ``@@@@@@@@@@@@@@@@@@@@@@@@@@@@``
             ``@@@Dg@@Ws~``.,;)fwWg@@@@@@@@``
             ``@@U``:?yuT_`````````-;b@@@@@``
             ``@@-``````.^.``````````;@@@@@``
             ``@@gV=-`````````_|fT;-`-@@@@@``
             ``*-`.;Tr;:````````.=u8gg@@@@@``
             ```````````````````````.g@@@@@``
             `````````````````-``````?@@@@@``
             `````@sssssss@```,1=````"@@@@@``
             `````@       @````.*Uu~`!@@@@@``
             `@ss`@       @```````,yg@@@@@@``
             `@  `[[[[@[[[[`f;.`````.$@@@@@``
             `@    `[[[[[`@@@@@Wf=-`{@@@@@@``
             `[[[[@[[[[`@@@@@@@@@@@g@@@@@@@``
             ```[[[[[````````````````````````
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:WyrymimThemedIconsThemedIcons+RemoteMonoApp}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(WyrymimThemedIconsThemedIcons.RemoteMonoApp))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = WyrymimThemedIconsThemedIcons.RemoteMonoApp.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;WyrymimThemedIconsThemedIcons.RemoteMonoApp&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoApp.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoApp">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoApp.Load_Default">
            <summary>Loads the image for Themed Icon RemoteMonoApp theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoApp.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteMonoApp.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoAppMin">
             <summary>
            	<para>
            		<para>RemoteMonoAppMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoAppMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoAppMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             ````````````````````````````````
             ``@@@@@@@@@@@@@@@@@@@@@@@@@@@@``
             ``@@@@@@@gU?;;rsyd$g@@@@@@@@@@``
             ``@@d`:?U0b?.```````-;T8@@@@@@``
             ``@g.`````.;!``````````~@@@@@@``
             ``@@0|:`````````-zs*".`-@@@@@@``
             ``z;"ryy?~.``````.;fW@g0@@@@@@``
             ``````````.``````````-*@@@@@@@``
             ```````````````````````v@@@@@@``
             ``@@@@@@@@@@@@@@``s:```,@@@@@@``
             ``@@          @@``E@W{;?@@@@@@``
             ``@@          @@```-s0@@@@@@@@``
             ``@@          @@``````,@@@@@@@``
             ``@@@@@@@@@@@@@@``@#{;O@@@@@@@``
             ``````@@@@@@``````@@@@@@@@@@@@``
             ````````````````````````````````
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:WyrymimThemedIconsThemedIcons+RemoteMonoAppMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(WyrymimThemedIconsThemedIcons.RemoteMonoAppMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = WyrymimThemedIconsThemedIcons.RemoteMonoAppMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;WyrymimThemedIconsThemedIcons.RemoteMonoAppMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoAppMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoAppMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoAppMin.Load_Default">
            <summary>Loads the image for Themed Icon RemoteMonoAppMin theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.RemoteMonoAppMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoteMonoAppMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Obsolete">
             <summary>
             <para>
                 <para>Obsolete Themed Icon generated identifiers:</para>
                 <para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Obsolete"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
                 <para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Obsolete.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
                 <para>
                     <code>
                                             
                      `````                  
                      S%%%4-                 
                      -%%%=                  
                   :!a9usleDe!`              
                 `)`T;`    `_E1`             
                 28.`TDs:      .;-           
                `%C   :9%[    -r??:          
                 4d`   `:`   :?+++?_         
                 :dE-       _??  `??~        
                  `cd9)=;. ~???  `???;       
                     -^;` ;????__^????;`     
                         ;?????:::?????=`    
                        -+?????;;!?????r:    
                          `````````````      
                                             
            </code>
                 </para>
             </para>
            </summary>
            <remarks>
             <para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
             <code>&lt;Image Source="{icons:ThemedIcon myres:WeqaqiwThemedIconsThemedIcons+Obsolete}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
             <code>[Item(Name="Sample", Icon=typeof(WeqaqiwThemedIconsThemedIcons.Obsolete))]        // C# Type attribute</code>
            </example>
            <example>
             <code>IconId iconid = WeqaqiwThemedIconsThemedIcons.Obsolete.Id;        // IconId identifier object</code>
            </example>
            <example>
             <code>themediconmanager.GetIcon&lt;WeqaqiwThemedIconsThemedIcons.Obsolete&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Obsolete.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Obsolete">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Obsolete.Load_Default">
            <summary>Loads the image for Themed Icon Obsolete theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Obsolete.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Obsolete.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.ObsoleteMin">
             <summary>
             <para>
                 <para>ObsoleteMin Themed Icon generated identifiers:</para>
                 <para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.ObsoleteMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
                 <para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.ObsoleteMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
                 <para>
                     <code>
                                             
                     %%%%%%                  
                      %%%%                   
                   :LiqDDd}c:                
                 ^:,;!_-':"|d#L              
               `uc'C3^`      \l              
               r%+  ;Dmc-      `+r.          
               4%-   .3%%_    .r??r-         
               )%\     -:    -r?????:        
               `X8!         :r?    ??_       
                 |8hr-.    ,???    ???~      
                   ~}SdO- "????    ????~     
                         ~??????????????;    
                        ;??????    ??????=`  
                       `"r??????????????r"`  
                                             
            </code>
                 </para>
             </para>
            </summary>
            <remarks>
             <para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
             <code>&lt;Image Source="{icons:ThemedIcon myres:WeqaqiwThemedIconsThemedIcons+ObsoleteMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
             <code>[Item(Name="Sample", Icon=typeof(WeqaqiwThemedIconsThemedIcons.ObsoleteMin))]        // C# Type attribute</code>
            </example>
            <example>
             <code>IconId iconid = WeqaqiwThemedIconsThemedIcons.ObsoleteMin.Id;        // IconId identifier object</code>
            </example>
            <example>
             <code>themediconmanager.GetIcon&lt;WeqaqiwThemedIconsThemedIcons.ObsoleteMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.ObsoleteMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.ObsoleteMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.ObsoleteMin.Load_Default">
            <summary>Loads the image for Themed Icon ObsoleteMin theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.ObsoleteMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon ObsoleteMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Maui">
             <summary>
            	<para>
            		<para>Maui Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Maui"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Maui.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                     :7ueeeeeeeeeeu7:`       
                   `:2eeeeeeeeeeeeee5"`      
                  `_5eeeeeueeeeseeeeee;`     
                 `;eeeeee; ~52, ~5eeeee=`    
                `!eeeeeu,   -.   :ueeeeer`   
               `/eeeee]. :F:  :u_ `zeeeee?`  
               `Leeee7` ;ec`  `ce= `|eeeeT`  
                `?ee}.`+eu"_Lc_"Ce)``7eeT`   
                 `/eeeeeeeeeeeeeeeeeeeeL`    
                  `;eeeeeeeeeeeeeeeeee/`     
                   `^5eeeeeeeeeeeeeee;`      
                     _CeeeeeeeeeeeeC^`       
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:KuwidajThemedIconsThemedIcons+Maui}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(KuwidajThemedIconsThemedIcons.Maui))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = KuwidajThemedIconsThemedIcons.Maui.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;KuwidajThemedIconsThemedIcons.Maui&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Maui.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Maui">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Maui.Load_Default">
            <summary>Loads the image for Themed Icon Maui theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.Maui.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Maui.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MauiMin">
             <summary>
            	<para>
            		<para>MauiMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MauiMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MauiMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                     :7ueeeeeeeeeeu7:`       
                   `:2eeeeeeeeeeeeee5"`      
                  `_5eeeeeueeeeseeeeee;`     
                 `;eeeeee; ~52, ~5eeeee=`    
                `!eeeeeu,   -.   :ueeeeer`   
               `/eeeee]. :]:  :u_ `zeeeee?`  
               `Leeee7` ;ec`  `ce= `|eeeeT`  
                `?ee}.`+eu"_Lc_"Ce)``7eeT`   
                 `/eeeeeeeeeeeeeeeeeeeeL`    
                  `;eeeeeeeeeeeeeeeeee/`     
                   `^5eeeeeeeeeeeeeee;`      
                     _CeeeeeeeeeeeeC^`       
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:VadylenThemedIconsThemedIcons+MauiMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(VadylenThemedIconsThemedIcons.MauiMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = VadylenThemedIconsThemedIcons.MauiMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;VadylenThemedIconsThemedIcons.MauiMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MauiMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MauiMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MauiMin.Load_Default">
            <summary>Loads the image for Themed Icon MauiMin theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.MauiMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon MauiMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngine">
             <summary>
            	<para>
            		<para>UnrealEngine Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                         -,;LL!_-            
                    `LRg@@@@@@@@@@gD)-       
                  ~R@@@@@@@@@@@@@@@@@@D=     
                -R@@@@@@@g8@@@@@@@@@@@@@%:   
               :g@@@@@@x-`g@@@@@@6!xg@@@@@~  
              `g@@@@@R`   x@@gJ=  )@@@@@@@@- 
              e@@@@@{~i`   @@@r   g@@@@@@@@R 
              Q@@@@@T@@L   @@@L   g@@@@@@@@@ 
              g@@@@@@@@L   @@@L   g@@@@@@@@@ 
              U@@@@@@@@L   @@@L   g@$U@@@@@8 
              -@@@@@@@g;   Li;    -`;@@@@@@_ 
               ~@@@@@@%=      ,f` ;D@@@@@@*  
                ,$@@@@@@@QRe7#@@@@@@@@@@g~   
                  LQ@@@@@@@@@@@@@@@@@@gJ     
                    :fQ@@@@@@@@@@@@gu^       
                        -~=Tff7*~-           
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BakodazThemedIconsThemedIcons+UnrealEngine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BakodazThemedIconsThemedIcons.UnrealEngine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BakodazThemedIconsThemedIcons.UnrealEngine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BakodazThemedIconsThemedIcons.UnrealEngine&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngine.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngine">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngine.Load_Default">
            <summary>Loads the image for Themed Icon UnrealEngine theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngine.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon UnrealEngine.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngineMin">
             <summary>
            	<para>
            		<para>UnrealEngineMin Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngineMin"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngineMin.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                         .,;LL!_-            
                     ;6g@@@@@@@@@@gp=        
                  ~6@@@@@@@@@@@@@@@@@@p!     
                -#@@@@@@@g8@@@@@@@@@@@@@$:   
               :g@@@@@@x-`g@@@@@@6!xg@@@@@~  
              `@@@@@@R`   x@@gJ=  )@@@@@@@@- 
              e@@@@@{~i`   @@@r   g@@@@@@@@R 
              Q@@@@@T@@L   @@@L   g@@@@@@@@@ 
              g@@@@@@@@L   @@@L   g@@@@@@@@@ 
              U@@@@@@@@L   @@@L   g@$U@@@@@8 
              -@@@@@@@g;   Li;    -`;@@@@@@_ 
               ~@@@@@@%=      ,f` ;D@@@@@@*  
                _Q@@@@@@@QRe7#@@@@@@@@@@g;   
                  rW@@@@@@@@@@@@@@@@@@$7     
                    `)W@@@@@@@@@@@@$J-       
                        -^=Tff7*~-           
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:KaromybThemedIconsThemedIcons+UnrealEngineMin}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(KaromybThemedIconsThemedIcons.UnrealEngineMin))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = KaromybThemedIconsThemedIcons.UnrealEngineMin.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;KaromybThemedIconsThemedIcons.UnrealEngineMin&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngineMin.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngineMin">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngineMin.Load_Default">
            <summary>Loads the image for Themed Icon UnrealEngineMin theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerAppKindThemedIcons.UnrealEngineMin.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon UnrealEngineMin.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons">
             <summary>
            	<para>
            		<para>Autogenerated identifier classes and identifier objects to Themed Icons registered with <see cref="T:JetBrains.Application.Icons.IThemedIconManager"></see>.</para>
            		<para>Identifier classes should be used in attributes, XAML, or generic parameters. Where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected, use the identifier object in the <c>Id</c> field of the identifier class.</para>
            	</para>
            </summary>
            <remarks>
            	<para>This code was compile-time generated to support Themed Icons in the JetBrains application.</para>
            	<para>It has two primary goals: load the icons of this assembly to be registered with <see cref="T:JetBrains.Application.Icons.IThemedIconManager"></see> so that they were WPF-accessible and theme-sensitive; and emit early-bound accessors for referencing icons in codebehind in a compile-time-validated manner.</para>
            	<h1>XAML</h1>
            	<para>For performance reasons, the icons are not individually exposed with application resources. There is a custom markup extension to bind an image source in markup.</para>
            	<para>To use an icon from XAML, set an <see cref="T:System.Windows.Media.ImageSource"></see> property to the <see cref="T:System.CodeDom.CodeTypeReference"></see> markup extension, which takes an icon identifier class (nested in <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons"></see> class) as a parameter.</para>
            	<para>Example:</para>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:DotProfilerThemedIcons+Trinity}" /&gt;</code>
            	<h1>Attributes</h1>
            	<para>Sometimes you have to reference an icon from a type attriute when you're defining objects in code. Typical examples are Options pages and Tool Windows.</para>
            	<para>To avoid the use of string IDs which are not validated very well, we've emitted identifier classes to be used with <c>typeof()</c> expression, one per each icon. Use the attribute overload which takes a <see cref="T:System.Type"></see> for an image, and choose your icon class from nested classes in the <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons"></see> class.</para>
            	<para>Example:</para>
            	<code>[Item(Name="Sample", Icon=typeof(DotProfilerThemedIcons.Trinity))]</code>
            	<h1>CodeBehind</h1>
            	<para>In codebehind, we have two distinct tasks: (a) specify some icon in the APIs and (b) render icon images onscreen.</para>
            	<para>On the APIs stage you should only manipulate icon identifier objects (of type <see cref="T:JetBrains.UI.Icons.IconId"></see>, statically defined in <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons"></see> in <c>Id</c> fields). Icon identifier classes (nested in <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons"></see>) should be turned into icon identifier objects as early as possible. Rendering is about getting an <see cref="T:System.Windows.Media.ImageSource"></see> to assign to WPF, or <see cref="T:System.Drawing.Bitmap"></see> to use with GDI+ / Windows Forms.</para>
            	<para>You should turn an identifier object into a rendered image as late as possible. The identifier is static and lightweight and does not depend on the current theme, while the image is themed and has to be loaded or generated/rasterized. You need an <see cref="T:JetBrains.Application.Icons.IThemedIconManager"></see> instance to get the image out of an icon identifier object. Once you got the image, you should take care to change it with theme changes — either by using a live image property, or by listening to the theme change event. See <see cref="T:JetBrains.Application.Icons.IThemedIconManager"></see> and its extensions for the related facilities.</para>
            	<para>Example:</para>
            	<code>// Getting IconId identifier object to use with APIs
            IconId iconid = DotProfilerThemedIcons.Trinity.Id;</code>
            	<code>// Getting IconId out of an Icon Identifier Class type
            IconId iconid = new JetBrains.Application.Icons.CompiledIconsCs.CompiledIconCsId(typeof(DotProfilerThemedIcons.Trinity));</code>
            	<code>// Getting image for screen rendering by IconId
            themediconmanager.Icons[icnoid]</code>
            	<code>// Getting image for screen rendering by Icon Identifier Class
            themediconmanager.GetIcon&lt;DotProfilerThemedIcons.Trinity&gt;()</code>
            	<h1>Icons Origin</h1>
            	<para>This code was generated by a pre-compile build task from a set of input files which are XAML files adhering to a certain convention, as convenient for exporting them from the Illustrator workspace, plus separate PNG files with raster icons. In the projects, these files are designated with <c>ThemedIconsXamlV3</c> and <c>ThemedIconPng</c> build actions and do not themselves get into the output assembly. All of such files are processed, vector images for different themes of the same icon are split and combined into the single list of icons in this assembly. This list is then written into the genearted XAML file (compiled into BAML within assembly), and serves as the source for this generated code.</para>
            </remarks>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine">
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileLineByLine Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileLineByLine.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    :=;`            
               _=:     ==     -="            
               ;=`    -=!      =!            
               :=:  -;!:      -=^            
               `;!- .:                       
                 ,!;:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileLineByLine}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileLineByLine))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileLineByLine.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileLineByLine&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling">
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSampling Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSampling.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:_"~~:`                  
                 -~;:``                      
                _;:    `                     
               :;:  `,:;,      `-            
               ~;``,;--;;      ;;            
               :;^;--~;:'"'   .;_            
               _;;- `:'^^.   .~-             
              :;`:;^,~~.  `-"~.              
             `;-`-:~;~~;;~_:-                
             ,;^,-.`                         
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileSampling}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileSampling))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileSampling.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileSampling&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3">
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileSamplingNet3 Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileSamplingNet3.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:"~!!~":`                
                 :!!:.`  ``:;!:              
                ~*:    **    -*~`            
               :*:     **     -*_            
               ;*`    -*=      ==            
               :*-  -;=:`     .:             
               `;=- .:`      .:              
                 ,=~:`    `-~:               
                   -";!!!!~_-    mm          
                                 mm          
                                             
                                 mm          
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:GekefedThemedIconsThemedIcons+ProfileSamplingNet3}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(GekefedThemedIconsThemedIcons.ProfileSamplingNet3))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = GekefedThemedIconsThemedIcons.ProfileSamplingNet3.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;GekefedThemedIconsThemedIcons.ProfileSamplingNet3&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline">
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                 `:"~;;~_:`                  
               -;;:.````.:;;:                
              "!:    !!    -!~`              
             _!:     !!     -!_              
             ;!`    -!!      !!              
             :!-  -;!:      .!:              
             `~!- .:       .!`               
               :!~-`                         
                 ':~;                        
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTimeline&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing">
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfileTracing Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfileTracing.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                   `:^~;;~":.                
                 -;!,.````.:;!:              
                ^=:    ==    -=~`            
               _=:     ==     -="            
               ;=`    -=!      =;            
               :=-  -;!:       `             
               `;!- .:                       
                 ,!~:`                       
                   -"~;==                    
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:TobyruqThemedIconsThemedIcons+ProfileTracing}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(TobyruqThemedIconsThemedIcons.ProfileTracing))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = TobyruqThemedIconsThemedIcons.ProfileTracing.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;TobyruqThemedIconsThemedIcons.ProfileTracing&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable">
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>ProfilingNotAvailable Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ProfilingNotAvailable.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
             NN~~~~~~~~~~~~~~~~~~~~~~~~~~~~NN
             $$;;GGGGGGGGGGGGGGGGGGGGGGGG;;$$
             $$;;dddddddddd    dddddddddd;;$$
             QQ!!pppppppppp    pppppppppp!!QQ
             gg==bbbbbbbbbb    bbbbbbbbbb==gg
             gg++9999999999    9999999999++gg
             ggrr6666666666    6666666666rrgg
             ggrrUUUUUUUUUU"  :UUUUUUUUUUrrgg
             ggccEEEEEEEEEEe` uEEEEEEEEEEccgg
             gg))kkkkkkkkkkkkkkkkkkkkkkkk))gg
             @@TTSSSSSSSSSS!--~SSSSSSSSSSTT@@
             @@77eeeeeeeeee~``,eeeeeeeeee77@@
             @@ss222222222222222222222222ss@@
             @@llllllllllllllllllllllllllll@@
             @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FyxowamThemedIconsThemedIcons+ProfilingNotAvailable}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FyxowamThemedIconsThemedIcons.ProfilingNotAvailable))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FyxowamThemedIconsThemedIcons.ProfilingNotAvailable.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FyxowamThemedIconsThemedIcons.ProfilingNotAvailable&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline">
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>MonoTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.MonoTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
               !!!!!!!;:----:^!!!!!          
               !!!!```.'`      .!!!          
               !!!!~-           ,!!          
               ~_-.``.`     :~^:_!!          
                              `,!!!          
                           -'  `__;          
                            :;_              
                    `"!-                     
                   :!!!                      
                 -;!!!!                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:MelobawThemedIconsThemedIcons+MonoTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(MelobawThemedIconsThemedIcons.MonoTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = MelobawThemedIconsThemedIcons.MonoTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;MelobawThemedIconsThemedIcons.MonoTimeline&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline">
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
             <summary>
            	<para>
            		<para>UnityTimeline Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.UnityTimeline.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                    `:~  ~:`                 
                 '_;!"'  ._!!_-              
               ~!!~.        `~!!~            
               !!:;!_-    ._;;:!!            
               !!  `-^!~^!~:`  !!            
               !!      !!      -`            
               ;:      !!                    
                `:_'                         
                 `:~!~:                      
                     '_                      
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BikubohThemedIconsThemedIcons+UnityTimeline}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BikubohThemedIconsThemedIcons.UnityTimeline))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BikubohThemedIconsThemedIcons.UnityTimeline.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BikubohThemedIconsThemedIcons.UnityTimeline&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorClosedList">
             <summary>
            	<para>
            		<para>ConfiguratorClosedList Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorClosedList"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorClosedList.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:DotProfilerThemedIcons+ConfiguratorClosedList}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(DotProfilerThemedIcons.ConfiguratorClosedList))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = DotProfilerThemedIcons.ConfiguratorClosedList.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;DotProfilerThemedIcons.ConfiguratorClosedList&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorClosedList.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorClosedList">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorClosedList.Load_Color">
            <summary>Loads the image for Themed Icon ConfiguratorClosedList theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorClosedList.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon ConfiguratorClosedList.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorError">
             <summary>
            	<para>
            		<para>ConfiguratorError Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorError"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorError.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                          :cccc"             
                         :c!  ;c"            
                        "c!    ;c~           
                       ^c;      ^c~          
                      ~c~        "c!         
                     ;c^   8888   :c!        
                    !c_    8888    :L/`      
                  `!c:     8888     -L/`     
                 `/L:      8888      -r+`    
                `*L-                  .r+`   
               `+r.        8888        `rr.  
              .rr.         8888         `rr- 
             .rr`                        `*L-
             :?+-                        `*L_
              `;cccccccccccccccccccccccccc!` 
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:DotProfilerThemedIcons+ConfiguratorError}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(DotProfilerThemedIcons.ConfiguratorError))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = DotProfilerThemedIcons.ConfiguratorError.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;DotProfilerThemedIcons.ConfiguratorError&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorError.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorError">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorError.Load_Color">
            <summary>Loads the image for Themed Icon ConfiguratorError theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorError.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon ConfiguratorError.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorOpenedList">
             <summary>
            	<para>
            		<para>ConfiguratorOpenedList Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorOpenedList"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorOpenedList.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:DotProfilerThemedIcons+ConfiguratorOpenedList}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(DotProfilerThemedIcons.ConfiguratorOpenedList))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = DotProfilerThemedIcons.ConfiguratorOpenedList.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;DotProfilerThemedIcons.ConfiguratorOpenedList&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorOpenedList.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorOpenedList">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorOpenedList.Load_Color">
            <summary>Loads the image for Themed Icon ConfiguratorOpenedList theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorOpenedList.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon ConfiguratorOpenedList.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorTransparentIntegration">
             <summary>
            	<para>
            		<para>ConfiguratorTransparentIntegration Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorTransparentIntegration"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorTransparentIntegration.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
             o2{{{{{{{{{{{{{{{{{{{{{{{{{{{{uo
             o|                            +o
             o|                            +o
             o|           `    `![hs;      +o
             o|       `sB$$V``}@8!:*$gr    +o
             o|     `}gh-  `}@8^     ;$g!  +o
             o|   `}gh-   }@A" 2}      V@" +o
             o|  Tgh-    8g:   $@     ;g$` +o
             o| -@A      AQ` rg$"   ;$gr   +o
             o|  2@2`     `rg$;   ;$gr     +o
             o|   -h@2`  rg$;`s2u$gr       +o
             o|     -C8g$E;   -!r~         +o
             o|                            +o
             o|                            +o
             o|                            +o
             oI||||||||||||||||||||||||||||1o
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:DotProfilerThemedIcons+ConfiguratorTransparentIntegration}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(DotProfilerThemedIcons.ConfiguratorTransparentIntegration))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = DotProfilerThemedIcons.ConfiguratorTransparentIntegration.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;DotProfilerThemedIcons.ConfiguratorTransparentIntegration&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorTransparentIntegration.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorTransparentIntegration">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorTransparentIntegration.Load_Color">
            <summary>Loads the image for Themed Icon ConfiguratorTransparentIntegration theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorTransparentIntegration.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon ConfiguratorTransparentIntegration.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOff">
             <summary>
            	<para>
            		<para>ControllerPinOff Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOff"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOff.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                      `-:_^;;;;~_:-.         
                   -^\;:-``    ``--~/~-      
                 :=;:`               :;\:    
               `!;.      """"""""`     `;=.  
              .*^       `+"`;++++`       ,+- 
             `\~        `+: ~++++`        "+`
             _+`        `+: ~++++`         \~
             ;!         `+: ~++++`         ~*
             !;         `+~:!++++`         ~+
             "+`     -~~;++++++++;~~:      /;
             `+^      ``````````````      :+`
              -+,           ~!           :+: 
               '/~`         ~!         `^*-  
                 _*^-       -:       ."*^`   
                   :;\"-``      ``._=;:`     
                      -:"~;;;;;;~":-`        
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:DotProfilerThemedIcons+ControllerPinOff}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(DotProfilerThemedIcons.ControllerPinOff))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = DotProfilerThemedIcons.ControllerPinOff.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;DotProfilerThemedIcons.ControllerPinOff&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOff.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOff">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOff.Load_Color">
            <summary>Loads the image for Themed Icon ControllerPinOff theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOff.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon ControllerPinOff.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOn">
             <summary>
            	<para>
            		<para>ControllerPinOn Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOn"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOn.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                      .:"~!+rr+!;":-         
                   :;T+,:.`    `.-:=T=:      
                 ")r"`              `,+T^    
               .?r-                    `+c-  
              -T!       `\:              ~7: 
             `T\        `v~```````````    ;7`
             ;v`        `vvvr\\\\\\\rv.   `T=
             rL   -:::: `vvv^:::::::;v.    \T
             Lr   ,"""" `vvvvvvvvvvvvv.    =7
             ;v`        `vvvvvvvvvvvvv.    |+
             `7!        `v~```````````    ~v.
              :7~       `L,              ,v_ 
               -|=`                    `!T:  
                 ;T!:                -;T;`   
                  `_+T;-.`      ``-;)r"`     
                      :";=rrr+rr=;":`        
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:DotProfilerThemedIcons+ControllerPinOn}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(DotProfilerThemedIcons.ControllerPinOn))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = DotProfilerThemedIcons.ControllerPinOn.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;DotProfilerThemedIcons.ControllerPinOn&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOn.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOn">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOn.Load_Color">
            <summary>Loads the image for Themed Icon ControllerPinOn theme aspect Color.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ControllerPinOn.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon ControllerPinOn.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Add">
             <summary>
            	<para>
            		<para>Add Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Add"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Add.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Add}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Add))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Add.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Add&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Add.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Add">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Add.Load_Default">
            <summary>Loads the image for Themed Icon Add theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Add.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Add.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.AddGrey">
             <summary>
            	<para>
            		<para>AddGrey Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.AddGrey"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.AddGrey.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+AddGrey}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.AddGrey))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.AddGrey.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.AddGrey&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.AddGrey.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.AddGrey">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.AddGrey.Load_Default">
            <summary>Loads the image for Themed Icon AddGrey theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.AddGrey.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon AddGrey.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Attach">
             <summary>
            	<para>
            		<para>Attach Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Attach"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Attach.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                          ``````             
                          ``rr``             
                        ``.-;;-.`            
                      `:;r;;~~;;r!,``        
                    `-++:` '::-  :=+:`       
                   `-r!` ~+\~~=r;` ;r:`      
               ``""";r- ;r:    'r= `r="""``  
               ``"""!r. ;r-    `r/ `r\"""``  
                   `:r; `;r;"";+!` ~r"`      
                    `:+=- `:,,:` .!r_`       
                     ``"/+~",,"~+\^.`        
                        `.-:;;:-.`           
                          ``rr``             
                          ``````             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Attach}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Attach))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Attach.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Attach&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Attach.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Attach">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Attach.Load_Default">
            <summary>Loads the image for Themed Icon Attach theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Attach.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Attach.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.CloseNotification">
             <summary>
            	<para>
            		<para>CloseNotification Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.CloseNotification"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.CloseNotification.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:BivezebThemedIconsThemedIcons+CloseNotification}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(BivezebThemedIconsThemedIcons.CloseNotification))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = BivezebThemedIconsThemedIcons.CloseNotification.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;BivezebThemedIconsThemedIcons.CloseNotification&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.CloseNotification.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.CloseNotification">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.CloseNotification.Load_Default">
            <summary>Loads the image for Themed Icon CloseNotification theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.CloseNotification.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon CloseNotification.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Copy">
             <summary>
            	<para>
            		<para>Copy Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Copy"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Copy.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Copy}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Copy))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Copy.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Copy&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Copy.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Copy">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Copy.Load_Default">
            <summary>Loads the image for Themed Icon Copy theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Copy.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Copy.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Edit">
             <summary>
            	<para>
            		<para>Edit Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Edit"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Edit.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Edit}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Edit))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Edit.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Edit&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Edit.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Edit">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Edit.Load_Default">
            <summary>Loads the image for Themed Icon Edit theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Edit.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Edit.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Export">
             <summary>
            	<para>
            		<para>Export Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Export"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Export.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Export}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Export))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Export.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Export&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Export.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Export">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Export.Load_Default">
            <summary>Loads the image for Themed Icon Export theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Export.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Export.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Favorite">
             <summary>
            	<para>
            		<para>Favorite Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Favorite"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Favorite.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Favorite}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Favorite))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Favorite.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Favorite&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Favorite.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Favorite">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Favorite.Load_Default">
            <summary>Loads the image for Themed Icon Favorite theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Favorite.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Favorite.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Folder">
             <summary>
            	<para>
            		<para>Folder Themed Icon generated identifiers:</para>
            		<para>— <see cref = "T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Folder"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref = "F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Folder.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref = "T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Folder}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Folder))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Folder.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Folder&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Import">
             <summary>
            	<para>
            		<para>Import Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Import"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Import.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Import}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Import))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Import.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Import&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Import.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Import">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Import.Load_Default">
            <summary>Loads the image for Themed Icon Import theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Import.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Import.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Info">
             <summary>
            	<para>
            		<para>Info Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Info"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Info.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                       `-::_^^",:-`          
                    `-^;;;;;;;;;;;;~:`       
                   -;;;;;;;    ;;;;;;;:      
                  :;;;;;;;;    ;;;;;;;;"     
                 -;;;;;;;;;;;;;;;;;;;;;;:    
                 ";;;;;;;;;    ;;;;;;;;;~    
                 ^;;;;;;;;;    ;;;;;;;;;~    
                 -;;;;;;;;;    ;;;;;;;;;:    
                  _;;;;;;;;    ;;;;;;;;^     
                   :;;;;;;;    ;;;;;;;,      
                    `:~;;;;;;;;;;;;~:`       
                       .:,"~;;~"::.          
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Info}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Info))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Info.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Info&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Info.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Info">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Info.Load_Default">
            <summary>Loads the image for Themed Icon Info theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Info.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Info.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Magnifier">
             <summary>
            	<para>
            		<para>Magnifier Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Magnifier"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Magnifier.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:HawuwawThemedIconsThemedIcons+Magnifier}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(HawuwawThemedIconsThemedIcons.Magnifier))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = HawuwawThemedIconsThemedIcons.Magnifier.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;HawuwawThemedIconsThemedIcons.Magnifier&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Magnifier.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Magnifier">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Magnifier.Load_Default">
            <summary>Loads the image for Themed Icon Magnifier theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Magnifier.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Magnifier.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Next">
             <summary>
            	<para>
            		<para>NextAnnouncement Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Next"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Next.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FucedunThemedIconsThemedIcons+NextAnnouncement}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FucedunThemedIconsThemedIcons.NextAnnouncement))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FucedunThemedIconsThemedIcons.NextAnnouncement.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FucedunThemedIconsThemedIcons.NextAnnouncement&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Next.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Next">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Next.Load_Default">
            <summary>Loads the image for Themed Icon NextAnnouncement theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Next.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon NextAnnouncement.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.NonFavorite">
             <summary>
            	<para>
            		<para>NonFavorite Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.NonFavorite"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.NonFavorite.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+NonFavorite}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.NonFavorite))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.NonFavorite.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.NonFavorite&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.NonFavorite.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.NonFavorite">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.NonFavorite.Load_Default">
            <summary>Loads the image for Themed Icon NonFavorite theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.NonFavorite.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon NonFavorite.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Prev">
             <summary>
            	<para>
            		<para>PreviousAnnouncement Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Prev"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Prev.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:FucedunThemedIconsThemedIcons+PreviousAnnouncement}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(FucedunThemedIconsThemedIcons.PreviousAnnouncement))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = FucedunThemedIconsThemedIcons.PreviousAnnouncement.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;FucedunThemedIconsThemedIcons.PreviousAnnouncement&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Prev.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Prev">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Prev.Load_Default">
            <summary>Loads the image for Themed Icon PreviousAnnouncement theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Prev.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon PreviousAnnouncement.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Refresh">
             <summary>
            	<para>
            		<para>Refresh Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Refresh"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Refresh.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Refresh}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Refresh))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Refresh.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Refresh&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Refresh.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Refresh">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Refresh.Load_Default">
            <summary>Loads the image for Themed Icon Refresh theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Refresh.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Refresh.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Remove">
             <summary>
            	<para>
            		<para>Remove Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Remove"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Remove.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Remove}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Remove))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Remove.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Remove&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Remove.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Remove">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Remove.Load_Default">
            <summary>Loads the image for Themed Icon Remove theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Remove.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Remove.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.RemoveRed">
             <summary>
            	<para>
            		<para>RemoveRed Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.RemoveRed"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.RemoveRed.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+RemoveRed}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.RemoveRed))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.RemoveRed.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.RemoveRed&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.RemoveRed.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.RemoveRed">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.RemoveRed.Load_Default">
            <summary>Loads the image for Themed Icon RemoveRed theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.RemoveRed.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon RemoveRed.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Shield">
             <summary>
            	<para>
            		<para>Shield Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Shield"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Shield.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                          `,r-`              
                     `-"=TIII----.``         
                 \TsIIIIIIIII------------    
                 vIIIIIIIIIII------------`   
                 )IIIIIIIIIII------------    
                 =IIIIIIIIIII------------    
                 :IIIIIIIIIII-----------.    
                  zIIIIIIIIII-----------`    
                  `----------IIIIIIIIII+     
                   .---------IIIIIIIIIJ      
                    ---------IIIIIIII}'      
                     .-------IIIIIIIr`       
                      `------IIIII7_         
                         `'--Iz?;.           
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Shield}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Shield))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Shield.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Shield&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Shield.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Shield">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Shield.Load_Default">
            <summary>Loads the image for Themed Icon Shield theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Shield.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Shield.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Warning">
             <summary>
            	<para>
            		<para>Warning Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Warning"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Warning.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                           .cJ;              
                           7@@@              
                           ;@@$              
                           .@@9              
                            g@)              
                            ~7-              
                           ~@@@              
                            :".              
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PilidudThemedIconsThemedIcons+Warning}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PilidudThemedIconsThemedIcons.Warning))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PilidudThemedIconsThemedIcons.Warning.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PilidudThemedIconsThemedIcons.Warning&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Warning.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Warning">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Warning.Load_Default">
            <summary>Loads the image for Themed Icon Warning theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Warning.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Warning.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.InfoNotification">
             <summary>
            	<para>
            		<para>InfoNotification Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.InfoNotification"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.InfoNotification.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                       `-::_^^_::-`          
                    `-";;;;;;;;;;;;^-`       
                   -;;;;;;;    ;;;;;;;:      
                  :;;;;;;;;    ;;;;;;;;_     
                 -;;;;;;;;;;;;;;;;;;;;;;:    
                 ";;;;;;;;;    ;;;;;;;;;~    
                 ^;;;;;;;;;    ;;;;;;;;;~    
                 -;;;;;;;;;    ;;;;;;;;;:    
                  _;;;;;;;;    ;;;;;;;;^     
                   :;;;;;;;    ;;;;;;;,      
                    `:~;;;;;;;;;;;;~:`       
                       `::_~;;~"::.          
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:WotiruhThemedIconsThemedIcons+InfoNotification}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(WotiruhThemedIconsThemedIcons.InfoNotification))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = WotiruhThemedIconsThemedIcons.InfoNotification.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;WotiruhThemedIconsThemedIcons.InfoNotification&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.InfoNotification.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.InfoNotification">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.InfoNotification.Load_Default">
            <summary>Loads the image for Themed Icon InfoNotification theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.InfoNotification.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon InfoNotification.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ExternalLink">
             <summary>
            	<para>
            		<para>ExternalLink Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ExternalLink"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ExternalLink.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:SimixefThemedIconsThemedIcons+ExternalLink}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(SimixefThemedIconsThemedIcons.ExternalLink))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = SimixefThemedIconsThemedIcons.ExternalLink.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;SimixefThemedIconsThemedIcons.ExternalLink&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ExternalLink.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ExternalLink">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ExternalLink.Load_Default">
            <summary>Loads the image for Themed Icon ExternalLink theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ExternalLink.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon ExternalLink.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Spinner">
             <summary>
            	<para>
            		<para>Spinner Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Spinner"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Spinner.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                    ``       
                                     .^^     
                                      -;).   
                                      `"L7`  
                                       :+v!  
                                       -=vs  
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:PupojolThemedIconsThemedIcons+Spinner}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(PupojolThemedIconsThemedIcons.Spinner))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = PupojolThemedIconsThemedIcons.Spinner.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;PupojolThemedIconsThemedIcons.Spinner&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Spinner.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Spinner">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Spinner.Load_Default">
            <summary>Loads the image for Themed Icon Spinner theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Spinner.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Spinner.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Save">
             <summary>
            	<para>
            		<para>Save Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Save"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Save.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
                                             
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:QovavidThemedIconsThemedIcons+Save}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(QovavidThemedIconsThemedIcons.Save))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = QovavidThemedIconsThemedIcons.Save.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;QovavidThemedIconsThemedIcons.Save&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Save.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Save">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Save.Load_Default">
            <summary>Loads the image for Themed Icon Save theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.Save.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon Save.</summary>
        </member>
        <member name="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorHomeHide">
             <summary>
            	<para>
            		<para>IconfinderIcRoundLeft5760409 Themed Icon generated identifiers:</para>
            		<para>— <see cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorHomeHide"></see> identifier class, for use in attributes, XAML, and generic parameters;</para>
            		<para>— <see cref="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorHomeHide.Id"></see> identifier object, as a field in the identifier class, for use where an <see cref="T:JetBrains.UI.Icons.IconId"></see> value is expected.</para>
            		<para>
            			<code>
                      ^LxxxxffxxxfL^         
                   +D#)-          -rwp*      
                 {R)`                `r6x    
               _D=                      ~#;  
              ~Q.        LR-             `%* 
             `g`       L8L                `g:
             Ei      L8L                   *D
             g,    Lgw;~~~~~~~~~~~~~~~_    `@
             g:    fgf~~~~~~~~~~~~~~~~~    `@
             wT     `f#~                   ;%
             -g       `f#~                 Q~
              *%`       `f#-              RJ 
               !D_                      -R)  
                `E6;                  ~Vw-   
                  `{$6;            ~V$2-     
                     -Lef2uffffuuueT-        
            </code>
            		</para>
            	</para>
            </summary>
            <remarks>
            	<para>For details on Themed Icons and their use, see Remarks on the outer class.</para>
            </remarks>
            <example>
            	<code>&lt;Image Source="{icons:ThemedIcon myres:QuriqupThemedIconsThemedIcons+IconfinderIcRoundLeft5760409}" /&gt;        &lt;!-- XAML --&gt;</code>
            </example>
            <example>
            	<code>[Item(Name="Sample", Icon=typeof(QuriqupThemedIconsThemedIcons.IconfinderIcRoundLeft5760409))]        // C# Type attribute</code>
            </example>
            <example>
            	<code>IconId iconid = QuriqupThemedIconsThemedIcons.IconfinderIcRoundLeft5760409.Id;        // IconId identifier object</code>
            </example>
            <example>
            	<code>themediconmanager.GetIcon&lt;QuriqupThemedIconsThemedIcons.IconfinderIcRoundLeft5760409&gt;()        // Icon image for rendering</code>
            </example>
        </member>
        <member name="F:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorHomeHide.Id">
            <inheritdoc cref="T:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorHomeHide">identifier class</inheritdoc>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorHomeHide.Load_Default">
            <summary>Loads the image for Themed Icon IconfinderIcRoundLeft5760409 theme aspect Default.</summary>
        </member>
        <member name="M:JetBrains.Profiler.Resources.DotProfilerThemedIcons.ConfiguratorHomeHide.GetThemeImages">
            <summary>Returns the set of theme images for Themed Icon IconfinderIcRoundLeft5760409.</summary>
        </member>
        <member name="F:JetBrains.Profiler.Configuration.CoreRegistration.RegistryFreeArchitecture">
            <summary>
              Supported by CLR v4.0+ / Silverlight / CoreCLR.
              Use COR_PROFILER_PATH / CORECLR_PROFILER_PATH environment variables for both x86 and x64, so only one architecture will work.
              See http://social.msdn.microsoft.com/Forums/en-US/netfxtoolsdev/thread/4ff8cb98-ceee-4dae-a543-75e53109b53d
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Configuration.CoreRegistration.RegistryFree">
            <summary>
              Supported by CLR v4.6+ / CoreCLR. Use COR_PROFILER_PATH_32 / COR_PROFILER_PATH_64 / CORECLR_PROFILER_PATH_32 / CORECLR_PROFILER_PATH_64 environment variables.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Configuration.DescriptionPropertyFlags.Minor">
            <summary>
            A property with this flag will be shown in a configuration only if its
            value differs from values of this property in other configurations.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Configuration.DescriptionPropertyFlags.Significant">
            <summary>
            A property with this flag will be shown always in every configuration, no matter
            whether its value differes from that in other configuration or no.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Configuration.DescriptionPropertyFlags.AnywayHide">
            <summary>
            A property marke with this flag participates in argument comparison, and hash code
            computation but is never shown on a screen.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Configuration.DescriptionPropertyFlags.AnywayArray">
            <summary>
            A property is an array which is represented in a very special way in every configuration.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Configuration.Options.ControlKind.Manual">
            <summary>
              All processes use manual user control.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Configuration.Options.ControlKind.Api">
            <summary>
              All processes use API control.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Configuration.Options.ControlKind.ApiFirst">
            <summary>
              All first processes use API control. ALl child processes have no control, but profiling process start automatically.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Configuration.Options.ControlKind.RemoteApi">
            <summary>
              All processes use remote control.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Factories.CoreConfiguration.Test">
            <summary>
            Note: Only for test purposes !!! Do not use this flag in production !!!
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Factories.ProfileMode.StartProcess">
            <summary>
            Valid for intefaces derived from <see cref="!:IInfoFeatures"/> and <see cref="T:JetBrains.Profiler.Features.IFactoryFeatures"/>
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Factories.ProfileMode.AttachToProcess">
            <summary>
            Valid for intefaces derived from <see cref="T:JetBrains.Profiler.Features.IInfoFeatures`2"/> and <see cref="T:JetBrains.Profiler.Features.IInfoFactoryFeatures"/>
            </summary>
        </member>
        <member name="T:JetBrains.Profiler.Host.HostFactoryAttribute">
            <summary>
            Base attr for all host factory attributes, for efficient filtering of any derived classes in the part catalog.
            </summary>
        </member>
        <member name="M:JetBrains.Profiler.Host.HostFactoryAttribute.#ctor(JetBrains.Application.Parts.Instantiation)">
            <summary>
            Base attr for all host factory attributes, for efficient filtering of any derived classes in the part catalog.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Host.WcfHostInfo.VsInstanceId">
            <summary>
              Since Vs15
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Identities.CoreIdentity.CoreGuid">
            <summary>
              Core unique identifier.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Identities.CoreIdentity.ProcessGuid">
            <summary>
              Process unique identifier. Two or more cores can have the same process identifier!
            </summary>
        </member>
        <member name="M:JetBrains.Profiler.Identities.CoreIdentity.ToLog">
            <returns>Always has leading space</returns>
        </member>
        <member name="M:JetBrains.Profiler.Identities.IdentityUtil.ToLog(JetBrains.Profiler.Identities.IIdentity)">
            <returns>Always has leading space when not null</returns>
        </member>
        <member name="F:JetBrains.Profiler.Identities.SnapshotIdentity.SequenceGuid">
            <summary>
              Sequence unique identifier. Used when two sequential snapshots share data to each other (for example: snapshots in
              dotMemory).
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Identities.SnapshotIdentity.SequenceIndex">
            <summary>
              Index in sequence. Allow order snapshots and dectect lost snapshots in sequence.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Identities.SnapshotIdentity.SnapshotGuid">
            <summary>
              Snapshot unique identifier.
            </summary>
        </member>
        <member name="M:JetBrains.Profiler.Identities.SnapshotIdentity.ToLog">
            <returns>Always has leading space</returns>
        </member>
        <member name="M:JetBrains.Profiler.Launcher.LauncherController.RunProfiler(JetBrains.Profiler.Configuration.ProfileConfiguration,JetBrains.Lifetimes.Lifetime,JetBrains.Profiler.IHostManager,JetBrains.Application.Progress.IProgressIndicator,System.Func{JetBrains.Profiler.Profile.IHostProfileSubscription,JetBrains.Util.Pair{JetBrains.Application.Progress.IProgressIndicator,JetBrains.Profiler.Profile.IHostUI}})">
            <summary>
            Starts profiling session.
            In case of error during initialization it's guarantied that the host profile is fully terminated.
            That means that for example <see cref="P:JetBrains.Profiler.Profile.IHostProfile.Finished"/> already was called by the time the exception is thrown.
            </summary>
            <param name="configuration"></param>
            <param name="lifetime"></param>
            <param name="hostManager"></param>
            <param name="connectingProgress"></param>
            <param name="eventSubscriptionCallback"></param>
            <returns></returns>
            <exception cref="T:System.ArgumentNullException"></exception>
            <exception cref="T:System.ApplicationException"></exception>
        </member>
        <member name="M:JetBrains.Profiler.Profile.Bridge.ICoreFilesManager.TakeStreaming(System.Guid)">
            <summary>
            Should be called once
            If method wasn't called streaming file will be deleted
            </summary>
        </member>
        <member name="T:JetBrains.Profiler.Profile.Bridge.Impl.HostBridgeDeclarations.Answer">
            <summary>
              Values must be 0xD0-0xFF !!!
            </summary>
        </member>
        <member name="T:JetBrains.Profiler.Profile.Bridge.Impl.HostBridgeDeclarations.Command">
            <summary>
              Values must be 0xD0-0xFF !!!
            </summary>
        </member>
        <member name="T:JetBrains.Profiler.Profile.Bridge.Impl.MeasureCommandProcessor.Answer">
            <summary>
              Do not use valuses 0xD0-0xFF !!!
            </summary>
        </member>
        <member name="T:JetBrains.Profiler.Profile.Bridge.Impl.MeasureCommandProcessor.Command">
            <summary>
              Do not use valuses 0xD0-0xFF !!!
            </summary>
        </member>
        <member name="T:JetBrains.Profiler.Profile.Bridge.Impl.MemoryCommandProcessor.Answer">
            <summary>
              Do not use valuses 0xD0-0xFF !!!
            </summary>
        </member>
        <member name="T:JetBrains.Profiler.Profile.Bridge.Impl.MemoryCommandProcessor.Command">
            <summary>
              Do not use valuses 0xD0-0xFF !!!
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.CoreCommand.StartStop">
            <summary>
              Valid only when <see cref="P:JetBrains.Profiler.Profile.IHostProfile.HostBridgeType" /> is
              <see cref="F:JetBrains.Profiler.Profile.HostBridgeType.Measure" />
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.CoreCommand.Dump">
            <summary>
              Valid only when <see cref="P:JetBrains.Profiler.Profile.IHostProfile.HostBridgeType" /> is
              <see cref="F:JetBrains.Profiler.Profile.HostBridgeType.Memory" />
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.CoreCommand.Allocations">
            <summary>
              Valid only when <see cref="P:JetBrains.Profiler.Profile.IHostProfile.HostBridgeType" /> is
              <see cref="F:JetBrains.Profiler.Profile.HostBridgeType.Memory" />
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Initializing">
            <summary>
              Initialization in progress, no user commands possible yet. Allowed transitions to <see cref="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Error" />,
              <see cref="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Unsupported" /> or <see cref="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Done" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Terminating">
            <summary>
              Terminating in progress, no more user commands possible. Allowed transition to <see cref="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Error" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Unsupported">
            <summary>
              No user commands possible. Allowed transition to <see cref="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Error" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Error">
            <summary>
              Error was detected, no more user commands possible. No allowed transitions.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Pending">
            <summary>
              User command is in progress. Allowed transitions to: <see cref="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Error" /> or <see cref="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Done" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Done">
            <summary>
              User command <see cref="M:JetBrains.Profiler.Profile.IMemoryCoreHostProfile.Dump" /> or <see cref="M:JetBrains.Profiler.Profile.IMemoryCoreHostProfile.ForceGc" /> was
              completed. Allowed transitions to <see cref="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Error" />, <see cref="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Terminating" /> or <see cref="F:JetBrains.Profiler.Profile.CoreHostProfileStates.Pending" />. Allowed
              commands are <see cref="M:JetBrains.Profiler.Profile.IMemoryCoreHostProfile.Dump" /> or <see cref="M:JetBrains.Profiler.Profile.IMemoryCoreHostProfile.ForceGc" />.
            </summary>
        </member>
        <member name="M:JetBrains.Profiler.Profile.ICoreHostProfile.TakeStreaming">
            <summary>
            Should be called once
            If method wasn't called streaming file will be deleted
            </summary>
        </member>
        <member name="P:JetBrains.Profiler.Profile.IHostProfile.SupportedMainCloseWays">
            <summary>
              Returns the list of supported main application close commands.
            </summary>
        </member>
        <member name="P:JetBrains.Profiler.Profile.IHostProfile.SupportedCoreCloseWays">
            <summary>
              Returns the list of potentially supported core close commands.
            </summary>
        </member>
        <member name="P:JetBrains.Profiler.Profile.IHostProfile.SupportedCoreCommands">
            <summary>
              Returns the list of potentially supported core commands.
            </summary>
        </member>
        <member name="P:JetBrains.Profiler.Profile.IHostProfile.Finished">
            <summary>
              Indicate that the closing procedure is finished.
            </summary>
        </member>
        <member name="M:JetBrains.Profiler.Profile.IHostProfile.CloseAll(JetBrains.Profiler.Profile.CoreCloseWay[])">
            <summary>
              Start the finishing procedure. Please monitor the <see cref="P:JetBrains.Profiler.Profile.IHostProfile.Finished" /> flag to detect that closing procedure is
              finished.
            </summary>
            <param name="sequenceCoreCloseWays">
              The sequence of <see cref="T:JetBrains.Profiler.Profile.CoreCloseWay" /> for
              <see cref="M:JetBrains.Profiler.Profile.ICoreHostProfile.Close(JetBrains.Profiler.Profile.CoreCloseWay)" /> call.
            </param>
            <returns>
              <see cref="!:System.Boolean.True" /> - <see cref="M:JetBrains.Profiler.Profile.ICoreHostProfile.Close(JetBrains.Profiler.Profile.CoreCloseWay)" /> was called for all connected cores.
              <see cref="!:System.Boolean.False" /> - <see cref="M:JetBrains.Profiler.Profile.ICoreHostProfile.Close(JetBrains.Profiler.Profile.CoreCloseWay)" /> wasn't called for at least one connected
              core.
            </returns>
        </member>
        <member name="M:JetBrains.Profiler.Profile.IHostProfile.TryUserActionWait">
            <summary>
              Freese finishing procedure to show some UI.
            </summary>
            <returns>
              null - no user action is possible.
            </returns>
        </member>
        <member name="T:JetBrains.Profiler.Profile.IHostProfileSubscription">
            <summary>
              Please don't use the interface and derived interfaces after <see cref="M:JetBrains.Profiler.Profile.IHostProfileSubscription.Start(JetBrains.Application.Progress.IProgressIndicator,JetBrains.Profiler.Profile.IHostUI)" /> call!!!
            </summary>
        </member>
        <member name="P:JetBrains.Profiler.Profile.IProgressStatus.Progress">
            <summary>
              The valid range is [0..1].
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Initializing">
            <summary>
              Initialization in progress, no user commands possible yet. Allowed transitions to <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Error" />,
              <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Unsupported" />, <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Started" /> or <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Stopped" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Terminating">
            <summary>
              Terminating in progress, no more user commands possible. Allowed transition to <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Error" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Unsupported">
            <summary>
              No user commands possible. Allowed transition to <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Error" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Error">
            <summary>
              Error was detected, no more user commands possible. No allowed transitions.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Pending">
            <summary>
              User command is in progress. Allowed transitions to: <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Error" />, <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Started" /> or
              <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Stopped" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Started">
            <summary>
              User command <see cref="M:JetBrains.Profiler.Profile.IMeasureCoreHostProfile.Start" />, <see cref="M:JetBrains.Profiler.Profile.IMeasureCoreHostProfile.StopDropStart" /> or
              <see cref="M:JetBrains.Profiler.Profile.IMeasureCoreHostProfile.StopSaveStart" /> was completed. Allowed transitions to <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Error" />,
              <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Terminating" /> or <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Pending" />. Allowed commands are
              <see cref="M:JetBrains.Profiler.Profile.IMeasureCoreHostProfile.StopDrop" />, <see cref="M:JetBrains.Profiler.Profile.IMeasureCoreHostProfile.StopSave" />,
              <see cref="M:JetBrains.Profiler.Profile.IMeasureCoreHostProfile.StopDropStart" /> or <see cref="M:JetBrains.Profiler.Profile.IMeasureCoreHostProfile.StopSaveStart" />
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Stopped">
            <summary>
              User command <see cref="M:JetBrains.Profiler.Profile.IMeasureCoreHostProfile.StopDrop" /> or <see cref="M:JetBrains.Profiler.Profile.IMeasureCoreHostProfile.StopSave" /> was
              completed. Allowed transitions to <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Error" />, <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Terminating" />, <see cref="F:JetBrains.Profiler.Profile.MeasureCoreHostProfileStates.Pending" />.  Allowed
              command is <see cref="M:JetBrains.Profiler.Profile.IMeasureCoreHostProfile.Start" />.
            </summary>
        </member>
        <member name="M:JetBrains.Profiler.Profile.ResponsibilityEventArgs`1.Take">
            <summary>Please, call it only from the original event thread!</summary>
            <returns>Can return value only once! Your code is fully responsible for the object future in this case!</returns>
        </member>
        <member name="M:JetBrains.Profiler.Profile.ResponsibilityEventArgs`1.TakeWithoutResponsibility">
            <summary>
            Return a copy of its argument so that a client code can use it non-destructively, that is in RO mode.
            Using this method does not takes a responsibility for its content so that the hosting code can perform ANY action afer 
            all clients of the corresponding event have exited.
            </summary>
            <returns>Returns non-null value of the argument.</returns>
        </member>
        <member name="M:JetBrains.Profiler.Profile.ResponsibilityEventArgs`1.TryTake">
            <summary>Please, call it only from the original event thread!</summary>
            <returns>Can return non null value only once! Your code is fully responsible for the object future in this case!</returns>
        </member>
        <member name="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Initializing">
            <summary>
              Initialization in progress, no user commands possible yet. Allowed transitions to <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Error" />,
              <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Unsupported" />, <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Enabled" /> or <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Disabled" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Terminating">
            <summary>
              Terminating in progress, no more user commands possible. Allowed transition to <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Error" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Unsupported">
            <summary>
              No user commands possible. Allowed transition to <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Error" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Error">
            <summary>
              Error was detected, no more user commands possible. No allowed transitions.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Pending">
            <summary>
              User command is in progress. Allowed transitions to: <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Error" />, <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Enabled" /> or
              <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Disabled" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Enabled">
            <summary>
              User command <see cref="M:JetBrains.Profiler.Profile.IMemoryCoreHostProfile.EnableAllocations" /> was completed. Allowed transitions to
              <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Error" />, <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Terminating" /> or <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Pending" />. Allowed commands are
              <see cref="M:JetBrains.Profiler.Profile.IMemoryCoreHostProfile.DisableAllocations" />.
            </summary>
        </member>
        <member name="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Disabled">
            <summary>
              User command <see cref="M:JetBrains.Profiler.Profile.IMemoryCoreHostProfile.DisableAllocations" /> was completed. Allowed transitions to
              <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Error" />, <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Terminating" /> or <see cref="F:JetBrains.Profiler.Profile.SwitchCoreHostProfileStates.Pending" />. Allowed commands are
              <see cref="M:JetBrains.Profiler.Profile.IMemoryCoreHostProfile.EnableAllocations" />.
            </summary>
        </member>
        <member name="M:JetBrains.Profiler.UiExtensions.ProcessInfoHelpers.ExtractLaunchedApplicationFromArguments(System.String,System.String)">
            <summary>
            Takes an executable (or library) name appearing as the first command line argument
            </summary>
        </member>
    </members>
</doc>
