Click here to Skip to main content
15,886,110 members
Articles / Programming Languages / C#

Windows 7: New Features Explained using .NET

Rate me:
Please Sign up or sign in to vote.
4.65/5 (78 votes)
29 Mar 2021CPOL18 min read 186.1K   10K   263  
New Win7 features explained with simple demo applications
In this article, new Windows 7 features like Jumplist, Taskbar Progressbar, Tabbed Thumbnail, Icon Overlays, Application Restart Data Recovery, Network Management, Power Management, Task dialog, Sensor API, etc. are explained with simple demo applications
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.WindowsAPICodePack.Shell</name>
    </assembly>
    <members>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.JumpList">
            <summary>
            Represents an instance of a Taskbar button jump list.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.CreateJumpList">
            <summary>
            Create a JumpList for the application's taskbar button.
            </summary>
            <returns>A new JumpList that is associated with the app id of the main application window</returns>
            <remarks>If there are any other child (top-level) windows for this application and they don't have
            a specific JumpList created for them, they all will share the same JumpList as the main application window.
            In order to have a individual JumpList for a top-level window, use the overloaded method CreateJumpListForIndividualWindow.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.CreateJumpListForIndividualWindow(System.String,System.IntPtr)">
            <summary>
            Create a JumpList for the application's taskbar button.
            </summary>
            <param name="appid">Application Id for the individual window. This must be unique for each top-level window in order to have a individual JumpList.</param>
            <param name="windowHandle">Handle of the window associated with the new JumpList</param>
            <returns>A new JumpList that is associated with the specific window handle</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.CreateJumpListForIndividualWindow(System.String,System.Windows.Window)">
            <summary>
            Create a JumpList for the application's taskbar button.
            </summary>
            <param name="appid">Application Id for the individual window. This must be unique for each top-level window in order to have a individual JumpList.</param>
            <param name="window">WPF Window associated with the new JumpList</param>
            <returns>A new JumpList that is associated with the specific WPF window</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.AddCustomCategories(Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategory[])">
            <summary>
            Adds a collection of custom categories to the Taskbar jump list.
            </summary>
            <param name="customCategories">The catagories to add to the jump list.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.AddUserTasks(Microsoft.WindowsAPICodePack.Taskbar.IJumpListTask[])">
            <summary>
            Adds user tasks to the Taskbar JumpList. User tasks can only consist of JumpListTask or
            JumpListSeparator objects.
            </summary>
            <param name="tasks">The user tasks to add to the JumpList.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.ClearAllUserTasks">
            <summary>
            Removes all user tasks that have been added.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.#ctor(System.String)">
            <summary>
            Creates a new instance of the JumpList class with the specified
            appId. The JumpList is associated with the main window of the application.
            </summary>
            <param name="appID">Application Id to use for this instace.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.#ctor(System.String,System.Windows.Window)">
            <summary>
            Creates a new instance of the JumpList class with the specified
            appId. The JumpList is associated with the given WPF Window.
            </summary>
            <param name="appID">Application Id to use for this instace.</param>
            <param name="window">WPF Window that is associated with this JumpList</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.#ctor(System.String,System.IntPtr)">
            <summary>
            Creates a new instance of the JumpList class with the specified
            appId. The JumpList is associated with the given window.
            </summary>
            <param name="appID">Application Id to use for this instace.</param>
            <param name="windowHandle">Window handle for the window that is associated with this JumpList</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.AddToRecent(System.String)">
            <summary>
            Reports document usage to the shell.
            </summary>
            <param name="destination">The full path of the file to report usage.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpList.Refresh">
            <summary>
            Commits the pending JumpList changes and refreshes the Taskbar.
            </summary>
            <exception cref="T:System.InvalidOperationException">Will throw if the type of the file being added to the JumpList is not registered with the application.</exception>
            <exception cref="T:System.UnauthorizedAccessException">Will throw if recent documents tracking is turned off by the user or via group policy.</exception>
            <exception cref="T:System.Runtime.InteropServices.COMException">Will throw if updating the JumpList fails for any other reason.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpList.MaxSlotsInList">
            <summary>
            Gets the recommended number of items to add to the jump list.  
            </summary>
            <remarks>
            This number doesn’t 
            imply or suggest how many items will appear on the jump list.  
            This number should only be used for reference purposes since
            the actual number of slots in the jump list can change after the last
            refresh due to items being pinned or removed and resolution changes. 
            The jump list can increase in size accordingly.
            </remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpList.KnownCategoryToDisplay">
            <summary>
            Gets or sets the type of known categories to display.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpList.KnownCategoryOrdinalPosition">
            <summary>
            Gets or sets the value for the known category location relative to the 
            custom category collection.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpList.ApplicationId">
            <summary>
            Gets or sets the application ID to use for this jump list.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.JumpList.JumpListItemsRemoved">
            <summary>
            Occurs when items are removed from the Taskbar's jump list since the last
            refresh. 
            </summary>
            <remarks>
            This event is not triggered
            immediately when a user removes an item from the jump list but rather
            when the application refreshes the task bar list directly.
            </remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpList.RemovedDestinations">
            <summary>
            Retrieves the current list of destinations that have been removed from the existing jump list by the user. 
            The removed destinations may become items on a custom jump list.
            </summary>
            <value>A collection of items (filenames) removed from the existing jump list by the user.</value>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.SYSTEMTIME">
            <summary>
            SYSTEMTIME structure with some useful methods
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SYSTEMTIME.FromDateTime(System.DateTime)">
            <summary>
            Convert form System.DateTime
            </summary>
            <param name="time"></param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SYSTEMTIME.ToDateTime">
            <summary>
            Convert to System.DateTime
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SYSTEMTIME.ToDateTime(Microsoft.WindowsAPICodePack.Shell.SYSTEMTIME)">
            <summary>
            Convert to System.DateTime
            </summary>
            <param name="time"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.StockIconSizes">
            <summary>
            Specifies options for the size of the stock icon.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconSizes.Small">
            <summary>
            Retrieve the small version of the icon, as specified by SM_CXSMICON and SM_CYSMICON system metrics.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconSizes.Large">
            <summary>
            Retrieve the large version of the icon, as specified by SM_CXICON and SM_CYICON system metrics.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconSizes.ShellSize">
            <summary>
            Retrieve the shell-sized icons (instead of the size specified by the system metrics).
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier">
            <summary>
            Provides values used to specify which standard icon to retrieve. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DocumentNotAssociated">
            <summary>
            Icon for a document (blank page), no associated program.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DocumentAssociated">
            <summary>
            Icon for a document with an associated program.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Application">
            <summary>
             Icon for a generic application with no custom icon.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Folder">
            <summary>
             Icon for a closed folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.FolderOpen">
            <summary>
            Icon for an open folder. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Drive525">
            <summary>
            Icon for a 5.25" floppy disk drive.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Drive35">
            <summary>
             Icon for a 3.5" floppy disk drive. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DriveRemove">
            <summary>
             Icon for a removable drive.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DriveFixed">
            <summary>
             Icon for a fixed (hard disk) drive.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DriveNetwork">
            <summary>
             Icon for a network drive.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DriveNetworkDisabled">
            <summary>
             Icon for a disconnected network drive.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DriveCD">
            <summary>
             Icon for a CD drive.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DriveRam">
            <summary>
             Icon for a RAM disk drive. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.World">
            <summary>
             Icon for an entire network. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Server">
            <summary>
             Icon for a computer on the network.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Printer">
            <summary>
             Icon for a printer. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MyNetwork">
            <summary>
            Icon for My Network places.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Find">
            <summary>
            Icon for search (magnifying glass).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Help">
            <summary>
             Icon for help.     
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Share">
            <summary>
             Icon for an overlay indicating shared items.        
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Link">
            <summary>
             Icon for an overlay indicating shortcuts to items.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.SlowFile">
            <summary>
            Icon for an overlay for slow items.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Recycler">
            <summary>
             Icon for a empty recycle bin.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.RecyclerFull">
            <summary>
             Icon for a full recycle bin.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaCDAudio">
            <summary>
             Icon for audio CD media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Lock">
            <summary>
             Icon for a security lock.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.AutoList">
            <summary>
             Icon for a auto list.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.PrinterNet">
            <summary>
            Icon for a network printer.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.ServerShare">
            <summary>
             Icon for a server share.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.PrinterFax">
            <summary>
             Icon for a Fax printer.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.PrinterFaxNet">
            <summary>
            Icon for a networked Fax printer.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.PrinterFile">
            <summary>
             Icon for print to file.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Stack">
            <summary>
            Icon for a stack.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaSvcd">
            <summary>
             Icon for a SVCD media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.StuffedFolder">
            <summary>
             Icon for a folder containing other items.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DriveUnknown">
            <summary>
             Icon for an unknown drive.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DriveDvd">
            <summary>
             Icon for a DVD drive. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaDvd">
            <summary>
            Icon for DVD media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaDvdRam">
            <summary>
             Icon for DVD-RAM media.   
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaDvdRW">
            <summary>
            Icon for DVD-RW media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaDvdR">
            <summary>
             Icon for DVD-R media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaDvdRom">
            <summary>
             Icon for a DVD-ROM media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaCDAudioPlus">
            <summary>
             Icon for CD+ (Enhanced CD) media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaCDRW">
            <summary>
             Icon for CD-RW media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaCDR">
            <summary>
             Icon for a CD-R media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaCDBurn">
            <summary>
             Icon burning a CD.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaBlankCD">
            <summary>
             Icon for blank CD media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaCDRom">
            <summary>
             Icon for CD-ROM media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.AudioFiles">
            <summary>
             Icon for audio files.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.ImageFiles">
            <summary>
             Icon for image files.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.VideoFiles">
            <summary>
             Icon for video files.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MixedFiles">
            <summary>
             Icon for mixed Files.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.FolderBack">
            <summary>
            Icon for a folder back.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.FolderFront">
            <summary>
             Icon for a folder front.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Shield">
            <summary>
             Icon for a security shield. Use for UAC prompts only.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Warning">
            <summary>
             Icon for a warning.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Info">
            <summary>
             Icon for an informational message.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Error">
            <summary>
             Icon for an error message.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Key">
            <summary>
             Icon for a key.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Software">
            <summary>
             Icon for software.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Rename">
            <summary>
             Icon for a rename.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Delete">
            <summary>
             Icon for delete.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaAudioDvd">
            <summary>
             Icon for audio DVD media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaMovieDvd">
            <summary>
             Icon for movie DVD media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaEnhancedCD">
            <summary>
             Icon for enhanced CD media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaEnhancedDvd">
            <summary>
             Icon for enhanced DVD media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaHDDvd">
            <summary>
             Icon for HD-DVD media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaBluRay">
            <summary>
             Icon for BluRay media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaVcd">
            <summary>
             Icon for VCD media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaDvdPlusR">
            <summary>
             Icon for DVD+R media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaDvdPlusRW">
            <summary>
             Icon for DVD+RW media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DesktopPC">
            <summary>
             Icon for desktop computer.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MobilePC">
            <summary>
             Icon for mobile computer (laptop/notebook).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Users">
            <summary>
             Icon for users.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaSmartMedia">
            <summary>
             Icon for smart media.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaCompactFlash">
            <summary>
             Icon for compact flash.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DeviceCellPhone">
            <summary>
             Icon for a cell phone.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DeviceCamera">
            <summary>
             Icon for a camera.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DeviceVideoCamera">
            <summary>
             Icon for video camera.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DeviceAudioPlayer">
            <summary>
             Icon for audio player.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.NetworkConnect">
            <summary>
             Icon for connecting to network.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Internet">
            <summary>
             Icon for the Internet.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.ZipFile">
            <summary>
             Icon for a ZIP file.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.Settings">
            <summary>
            Icon for settings.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DriveHDDVD">
            <summary>
            HDDVD Drive (all types)
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.DriveBluRay">
            <summary>
            Icon for BluRay Drive (all types)
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaHDDVDROM">
            <summary>
            Icon for HDDVD-ROM Media
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaHDDVDR">
            <summary>
            Icon for HDDVD-R Media
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaHDDVDRAM">
            <summary>
            Icon for HDDVD-RAM Media
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaBluRayROM">
            <summary>
            Icon for BluRay ROM Media
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaBluRayR">
            <summary>
            Icon for BluRay R Media
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.MediaBluRayRE">
            <summary>
            Icon for BluRay RE Media (Rewriable and RAM)
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier.ClusteredDisk">
            <summary>
            Icon for Clustered disk
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellObjectNode">
            <summary>
            Represents a base class for individual shell entities (file system files, non-file system items, etc)
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellObject">
            <summary>
            The base class for all Shell objects in Shell Namespace.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.FromParsingName(System.String)">
            <summary>
            Creates a ShellObject subclass given a parsing name.
            For file system items, this method will only accept absolute paths.
            </summary>
            <param name="parsingName">The parsing name of the object.</param>
            <returns>A newly constructed ShellObject object.</returns>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellObject.nativeShellItem">
            <summary>
            Internal member to keep track of the native IShellItem2
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellObject.internalParsingName">
            <summary>
            Parsing name for this Object e.g. c:\Windows\file.txt,
            or ::{Some Guid} 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellObject.internalName">
            <summary>
            A friendly name for this object that' suitable for display
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellObject.internalPIDL">
            <summary>
            PID List (PIDL) for this object
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.ToString">
            <summary>
            Overrides object.ToString()
            </summary>
            <returns>A string representation of the object.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.GetDisplayName(Microsoft.WindowsAPICodePack.Shell.DisplayNameType)">
            <summary>
            Returns the display name of the ShellFolder object. DisplayNameType represents one of the 
            values that indicates how the name should look. 
            See <see cref="T:Microsoft.WindowsAPICodePack.Shell.DisplayNameType"/>for a list of possible values.
            </summary>
            <param name="displayNameType">A disaply name type.</param>
            <returns>A string.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.Dispose(System.Boolean)">
            <summary>
            Release the native and managed objects
            </summary>
            <param name="disposing">Indicates that this is being called from Dispose(), rather than the finalizer.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.Finalize">
            <summary>
            Implement the finalizer.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.GetHashCode">
            <summary>
            Returns the hash code of the object.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.Equals(Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Determines if two ShellObjects are identical.
            </summary>
            <param name="other">The ShellObject to comare this one to.</param>
            <returns>True if the ShellObjects are equal, false otherwise.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.Equals(System.Object)">
            <summary>
            Returns whether this object is equal to another.
            </summary>
            <param name="obj">The object to compare against.</param>
            <returns>Equality result.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.op_Equality(Microsoft.WindowsAPICodePack.Shell.ShellObject,Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Implements the == (equality) operator.
            </summary>
            <param name="a">Object a.</param>
            <param name="b">Object b.</param>
            <returns>true if object a equals object b; false otherwise.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObject.op_Inequality(Microsoft.WindowsAPICodePack.Shell.ShellObject,Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Implements the != (inequality) operator.
            </summary>
            <param name="a">Object a.</param>
            <param name="b">Object b.</param>
            <returns>true if object a does not equal object b; false otherwise.</returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.IsPlatformSupported">
            <summary>
            Indicates whether this feature is supported on the current platform.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.NativeShellItem2">
            <summary>
            Return the native ShellFolder object as newer IShellItem2
            </summary>
            <exception cref="T:System.Runtime.InteropServices.ExternalException">If the native object cannot be created.
            The ErrorCode member will contain the external error code.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.NativeShellItem">
            <summary>
            Return the native ShellFolder object
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.NativePropertyStore">
            <summary>
            Gets access to the native IPropertyStore (if one is already
            created for this item and still valid. This is usually done by the
            ShellPropertyWriter class. The reference will be set to null
            when the writer has been closed/commited).
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.Properties">
            <summary>
            Gets an object that allows the manipulation of ShellProperties for this shell item.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.ParsingName">
            <summary>
            Gets the parsing name for this ShellItem.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.Name">
            <summary>
            Gets the normal display for this ShellItem.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.PIDL">
            <summary>
            Gets the PID List (PIDL) for this ShellItem.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.IsLink">
            <summary>
            Gets a value that determines if this ShellObject is a link or shortcut.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.IsFileSystemObject">
            <summary>
            Gets a value that determines if this ShellObject is a file system object.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.Thumbnail">
            <summary>
            Gets the thumbnail of the ShellObject.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObject.Parent">
            <summary>
            Gets the parent ShellObject.
            Returns null if the object has no parent, i.e. if this object is the Desktop folder.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellLibrary">
            <summary>
            A Shell Library in the Shell Namespace
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellContainer">
            <summary>
            Represents the base class for all types of Shell "containers". Any class deriving from this class
            can contain other ShellObjects (e.g. ShellFolder, FileSystemKnownFolder, ShellLibrary, etc)
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellContainer.Dispose(System.Boolean)">
            <summary>
            Release resources
            </summary>
            <param name="disposing"><B>True</B> indicates that this is being called from Dispose(), rather than the finalizer.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellContainer.GetEnumerator">
            <summary>
            
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.#ctor(Microsoft.WindowsAPICodePack.Shell.IKnownFolder,System.Boolean)">
            <summary>
            Creates a shell library in the Libraries Known Folder, 
            using the given IKnownFolder
            </summary>
            <param name="sourceKnownFolder">KnownFolder from which to create the new Shell Library</param>
            <param name="isReadOnly">If <B>true</B> , opens the library in read-only mode.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.#ctor(System.String,System.Boolean)">
            <summary>
            Creates a shell library in the Libraries Known Folder, 
            using the given shell library name.
            </summary>
            <param name="libraryName">The name of this library</param>
            <param name="overwrite">Allow overwriting an existing library; if one exists with the same name</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.#ctor(System.String,Microsoft.WindowsAPICodePack.Shell.IKnownFolder,System.Boolean)">
            <summary>
            Creates a shell library in a given Known Folder, 
            using the given shell library name.
            </summary>
            <param name="libraryName">The name of this library</param>
            <param name="sourceKnownFolder">The known folder</param>
            <param name="overwrite">Override an existing library with the same name</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.#ctor(System.String,System.String,System.Boolean)">
            <summary>
            Creates a shell library in a given local folder, 
            using the given shell library name.
            </summary>
            <param name="libraryName">The name of this library</param>
            <param name="folderPath">The path to the local folder</param>
            <param name="overwrite">Override an existing library with the same name</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Close">
            <summary>
            Close the library, and release its associated file system resources
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Load(System.String,System.Boolean)">
            <summary>
            Load the library using a number of options
            </summary>
            <param name="libraryName">The name of the library</param>
            <param name="isReadOnly">If <B>true</B>, loads the library in read-only mode.</param>
            <returns>A ShellLibrary Object</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Load(System.String,System.String,System.Boolean)">
            <summary>
            Load the library using a number of options
            </summary>
            <param name="libraryName">The name of the library.</param>
            <param name="folderPath">The path to the library.</param>
            <param name="isReadOnly">If <B>true</B>, opens the library in read-only mode.</param>
            <returns>A ShellLibrary Object</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.FromShellItem(Microsoft.WindowsAPICodePack.Shell.IShellItem,System.Boolean)">
            <summary>
            Load the library using a number of options
            </summary>
            <param name="nativeShellItem">IShellItem</param>
            <param name="isReadOnly">read-only flag</param>
            <returns>A ShellLibrary Object</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Load(Microsoft.WindowsAPICodePack.Shell.IKnownFolder,System.Boolean)">
            <summary>
            Load the library using a number of options
            </summary>
            <param name="sourceKnownFolder">A known folder.</param>
            <param name="isReadOnly">If <B>true</B>, opens the library in read-only mode.</param>
            <returns>A ShellLibrary Object</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.ShowManageLibraryUI(System.String,System.String,System.IntPtr,System.String,System.String,System.Boolean)">
            <summary>
            Shows the library management dialog which enables users to mange the library folders and default save location.
            </summary>
            <param name="libraryName">The name of the library</param>
            <param name="folderPath">The path to the library.</param>
            <param name="windowHandle">The parent window,or IntPtr.Zero for no parent</param>
            <param name="title">A title for the library management dialog, or null to use the library name as the title</param>
            <param name="instruction">An optional help string to display for the library management dialog</param>
            <param name="allowAllLocations">If true, do not show warning dialogs about locations that cannot be indexed</param>
            <remarks>If the library is already open in read-write mode, the dialog will not save the changes.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.ShowManageLibraryUI(System.String,System.IntPtr,System.String,System.String,System.Boolean)">
            <summary>
            Shows the library management dialog which enables users to mange the library folders and default save location.
            </summary>
            <param name="libraryName">The name of the library</param>
            <param name="windowHandle">The parent window,or IntPtr.Zero for no parent</param>
            <param name="title">A title for the library management dialog, or null to use the library name as the title</param>
            <param name="instruction">An optional help string to display for the library management dialog</param>
            <param name="allowAllLocations">If true, do not show warning dialogs about locations that cannot be indexed</param>
            <remarks>If the library is already open in read-write mode, the dialog will not save the changes.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.ShowManageLibraryUI(Microsoft.WindowsAPICodePack.Shell.IKnownFolder,System.IntPtr,System.String,System.String,System.Boolean)">
            <summary>
            Shows the library management dialog which enables users to mange the library folders and default save location.
            </summary>
            <param name="sourceKnownFolder">A known folder.</param>
            <param name="windowHandle">The parent window,or IntPtr.Zero for no parent</param>
            <param name="title">A title for the library management dialog, or null to use the library name as the title</param>
            <param name="instruction">An optional help string to display for the library management dialog</param>
            <param name="allowAllLocations">If true, do not show warning dialogs about locations that cannot be indexed</param>
            <remarks>If the library is already open in read-write mode, the dialog will not save the changes.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Add(Microsoft.WindowsAPICodePack.Shell.ShellFileSystemFolder)">
            <summary>
            Add a new FileSystemFolder or SearchConnector
            </summary>
            <param name="item">The folder to add to the library.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Add(System.String)">
            <summary>
            Add an existing folder to this library
            </summary>
            <param name="folderPath">The path to the folder to be added to the library.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Clear">
            <summary>
            Clear all items of this Library 
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Remove(Microsoft.WindowsAPICodePack.Shell.ShellFileSystemFolder)">
            <summary>
            Remove a folder or search connector
            </summary>
            <param name="item">The item to remove.</param>
            <returns><B>true</B> if the item was removed.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Remove(System.String)">
            <summary>
            Remove a folder or search connector
            </summary>
            <param name="folderPath">The path of the item to remove.</param>
            <returns><B>true</B> if the item was removed.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Dispose(System.Boolean)">
            <summary>
            Release resources
            </summary>
            <param name="disposing">Indicates that this was called from Dispose(), rather than from the finalizer.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Finalize">
            <summary>
            Release resources
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.GetEnumerator">
            <summary>
            Retrieves the collection enumerator.
            </summary>
            <returns>The enumerator.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Retrieves the collection enumerator.
            </summary>
            <returns>The enumerator.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Contains(System.String)">
            <summary>
            Determines if an item with the specified path exists in the collection.
            </summary>
            <param name="fullPath">The path of the item.</param>
            <returns><B>true</B> if the item exists in the collection.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Contains(Microsoft.WindowsAPICodePack.Shell.ShellFileSystemFolder)">
            <summary>
            Determines if a folder exists in the collection.
            </summary>
            <param name="item">The folder.</param>
            <returns><B>true</B>, if the folder exists in the collection.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.IndexOf(Microsoft.WindowsAPICodePack.Shell.ShellFileSystemFolder)">
            <summary>
            Searches for the specified FileSystemFolder and returns the zero-based index of the
            first occurrence within Library list.
            </summary>
            <param name="item">The item to search for.</param>
            <returns>The index of the item in the collection, or -1 if the item does not exist.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.System#Collections#Generic#IList{Microsoft#WindowsAPICodePack#Shell#ShellFileSystemFolder}#Insert(System.Int32,Microsoft.WindowsAPICodePack.Shell.ShellFileSystemFolder)">
            <summary>
            Inserts a FileSystemFolder at the specified index.
            </summary>
            <param name="index">The index to insert at.</param>
            <param name="item">The FileSystemFolder to insert.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.System#Collections#Generic#IList{Microsoft#WindowsAPICodePack#Shell#ShellFileSystemFolder}#RemoveAt(System.Int32)">
            <summary>
            Removes an item at the specified index.
            </summary>
            <param name="index">The index to remove.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.System#Collections#Generic#ICollection{Microsoft#WindowsAPICodePack#Shell#ShellFileSystemFolder}#CopyTo(Microsoft.WindowsAPICodePack.Shell.ShellFileSystemFolder[],System.Int32)">
            <summary>
            Copies the collection to an array.
            </summary>
            <param name="array">The array to copy to.</param>
            <param name="arrayIndex">The index in the array at which to start the copy.</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Name">
            <summary>
            The name of the library, every library must 
            have a name
            </summary>
            <exception cref="T:System.Runtime.InteropServices.COMException">Will throw if no Icon is set</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.IconResourceId">
            <summary>
            The Resource Reference to the icon.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.LibraryType">
            <summary>
            One of predefined Library types
            </summary>
            <exception cref="T:System.Runtime.InteropServices.COMException">Will throw if no Library Type is set</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.LibraryTypeId">
            <summary>
            The Guid of the Library type
            </summary>
            <exception cref="T:System.Runtime.InteropServices.COMException">Will throw if no Library Type is set</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.DefaultSaveFolder">
            <summary>
            By default, this folder is the first location 
            added to the library. The default save folder 
            is both the default folder where files can 
            be saved, and also where the library XML 
            file will be saved, if no other path is specified
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.IsPinnedToNavigationPane">
            <summary>
            Whether the library will be pinned to the 
            Explorer Navigation Pane
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.LibrariesKnownFolder">
            <summary>
            Get a the known folder FOLDERID_Libraries 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Item(System.Int32)">
            <summary>
            Retrieves the folder at the specified index
            </summary>
            <param name="index">The index of the folder to retrieve.</param>
            <returns>A folder.</returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.Count">
            <summary>
            The count of the items in the list.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.IsReadOnly">
            <summary>
            Indicates whether this list is read-only or not.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLibrary.IsPlatformSupported">
            <summary>
            Indicates whether this feature is supported on the current platform.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.KnownFolderHelper">
            <summary>
            Creates the helper class for known folders.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.KnownFolderHelper.FromPIDL(System.IntPtr)">
            <summary>
            Returns the native known folder (IKnownFolderNative) given a PID list
            </summary>
            <param name="pidl"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.KnownFolderHelper.FromKnownFolderId(System.Guid)">
            <summary>
            Returns a known folder given a globally unique identifier.
            </summary>
            <param name="knownFolderId">A GUID for the requested known folder.</param>
            <returns>A known folder representing the specified name.</returns>
            <exception cref="T:System.ArgumentException">Thrown if the given Known Folder ID is invalid.</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.KnownFolderHelper.FromKnownFolderIdInternal(System.Guid)">
            <summary>
            Returns a known folder given a globally unique identifier.
            </summary>
            <param name="knownFolderId">A GUID for the requested known folder.</param>
            <returns>A known folder representing the specified name. Returns null if Known Folder is not found or could not be created.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.KnownFolderHelper.GetKnownFolder(Microsoft.WindowsAPICodePack.Shell.IKnownFolderNative)">
            <summary>
            Given a native KnownFolder (IKnownFolderNative), create the right type of
            IKnownFolder object (FileSystemKnownFolder or NonFileSystemKnownFolder)
            </summary>
            <param name="knownFolderNative">Native Known Folder</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.KnownFolderHelper.FromCanonicalName(System.String)">
            <summary>
            Returns the known folder given its canonical name.
            </summary>
            <param name="canonicalName">A non-localized canonical name for the known folder, such as MyComputer.</param>
            <returns>A known folder representing the specified name.</returns>
            <exception cref="T:System.ArgumentException">Thrown if the given canonical name is invalid or if the KnownFolder could not be created.</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.KnownFolderHelper.FromPath(System.String)">
            <summary>
            Returns a known folder given its shell path, such as <c>C:\users\public\documents</c> or 
            <c>::{645FF040-5081-101B-9F08-00AA002F954E}</c> for the Recycle Bin.
            </summary>
            <param name="path">The path for the requested known folder; either a physical path or a virtual path.</param>
            <returns>A known folder representing the specified name.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.KnownFolderHelper.FromParsingName(System.String)">
            <summary>
            Returns a known folder given its shell namespace parsing name, such as 
            <c>::{645FF040-5081-101B-9F08-00AA002F954E}</c> for the Recycle Bin.
            </summary>
            <param name="parsingName">The parsing name (or path) for the requested known folder.</param>
            <returns>A known folder representing the specified name.</returns>
            <exception cref="T:System.ArgumentException">Thrown if the given parsing name is invalid.</exception>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.FolderCategory">
            <summary>
            Specifies the categories for known folders.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderCategory.None">
            <summary>
            The folder category is not specified.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderCategory.Virtual">
            <summary>
            The folder is a virtual folder. Virtual folders are not part 
            of the file system. For example, Control Panel and 
            Printers are virtual folders. A number of properties 
            such as folder path and redirection do not apply to this category.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderCategory.Fixed">
            <summary>
            The folder is fixed. Fixed file system folders are not 
            managed by the Shell and are usually given a permanent 
            path when the system is installed. For example, the 
            Windows and Program Files folders are fixed folders. 
            A number of properties such as redirection do not apply 
            to this category.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderCategory.Common">
            <summary>
            The folder is a common folder. Common folders are 
            used for sharing data and settings 
            accessible by all users of a system. For example, 
            all users share a common Documents folder as well 
            as their per-user Documents folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderCategory.PerUser">
            <summary>
            Each user has their own copy of the folder. Per-user folders 
            are those stored under each user's profile and 
            accessible only by that user.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.NavigationLogDirection">
            <summary>
            The direction argument for Navigate
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.NavigationLogDirection.Forward">
            <summary>
            Navigates forward through the navigation log
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.NavigationLogDirection.Backward">
            <summary>
            Navigates backward through the travel log
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewMode">
            <summary>
            Indicates the viewing mode of the explorer browser
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewMode.Auto">
            <summary>
            Choose the best view mode for the folder
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewMode.Content">
            <summary>
            (New for Windows7)
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewMode.Details">
            <summary>
            Object names and other selected information, such as the size or date last updated, are shown.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewMode.Icon">
            <summary>
            The view should display medium-size icons.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewMode.List">
            <summary>
            Object names are displayed in a list view.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewMode.SmallIcon">
            <summary>
            The view should display small icons. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewMode.Thumbnail">
            <summary>
            The view should display thumbnail icons. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewMode.ThumbStrip">
            <summary>
            The view should display icons in a filmstrip format.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewMode.Tile">
            <summary>
            The view should display large icons. 
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationFlags">
            <summary>
            Specifies the options that control subsequent navigation.
            Typically use one, or a bitwise combination of these
            flags to specify how the explorer browser navigates.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationFlags.AlwaysNavigate">
            <summary>
            Always navigate, even if you are attempting to navigate to the current folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationFlags.NavigateOnce">
            <summary>
            Do not navigate further than the initial navigation.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags">
            <summary>
            Indicates the content options of the explorer browser.
            Typically use one, or a bitwise combination of these
            flags to specify how conent should appear in the
            explorer browser control
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.AlignLeft">
            <summary>
            The view should be left-aligned. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.AutoArrange">
            <summary>
            Automatically arrange the elements in the view. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.CheckSelect">
            <summary>
            Turns on check mode for the view
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.ExtendedTiles">
            <summary>
            When the view is set to "Tile" the layout of a single item should be extended to the width of the view.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.FullRowSelect">
            <summary>
            When an item is selected, the item and all its sub-items are highlighted.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.HideFileNames">
            <summary>
            The view should not display file names
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.NoBrowserViewState">
            <summary>
            The view should not save view state in the browser.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.NoColumnHeader">
            <summary>
            Do not display a column header in the view in any view mode.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.NoHeaderInAllViews">
            <summary>
            Only show the column header in details view mode.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.NoIcons">
            <summary>
            The view should not display icons. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.NoSubfolders">
            <summary>
            Do not show subfolders. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.SingleClickActivate">
            <summary>
            Navigate with a single click
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentFlags.SingleSelection">
            <summary>
            Do not allow more than a single item to be selected.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.PaneVisibilityState">
            <summary>
            Indicates the visibility state of an ExplorerBrowser pane
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.PaneVisibilityState.DontCare">
            <summary>
            Allow the explorer browser to determine if this pane is displayed.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.PaneVisibilityState.Hide">
            <summary>
            Hide the pane
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.PaneVisibilityState.Show">
            <summary>
            Show the pane
            </summary>
        </member>
        <member name="T:MS.WindowsAPICodePack.Internal.DesktopWindowManagerNativeMethods">
            <summary>
            Internal class that contains interop declarations for 
            functions that are not benign and are performance critical. 
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarProxyWindow.Finalize">
            <summary>
            
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarProxyWindow.Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.ProgressBarStateSettings.CurrentValues">
            <summary>
            Represents a collection of name/value pairs for each HWND and it’s 
            current progress bar value.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.ProgressBarStateSettings.MaxValues">
            <summary>
            Represents a collection of name/value pairs for each HWND and it’s 
            current progress bar max values
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.ProgressBarStateSettings.States">
            <summary>
            Represents a collection of name/value pairs for each HWND and it’s 
            current progress bar state.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ProgressBarStateSettings.RefreshValue(System.IntPtr,System.Int32,System.Int32)">
            <summary>
            Refreshes the native taskbar with the current progressbar values for the given HWND
            </summary>
            <param name="hwnd">Current window handle</param>
            <param name="currentValue">Current progress bar value</param>
            <param name="maxValue">Current progress bar max value</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ProgressBarStateSettings.RefreshState(System.IntPtr,Microsoft.WindowsAPICodePack.Taskbar.TaskbarProgressBarState)">
            <summary>
            Refreshes the native taskbar with the current progressbar state for the given HWND
            </summary>
            <param name="hwnd">Current window handle</param>
            <param name="state">Current progress bar state</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ProgressBarStateSettings.Instance">
            <summary>
            Returns a singleton instance of the ProgressBarStateSettings class
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ProgressBarStateSettings.DefaultHandle">
            <summary>
            Represents the HWND for the application or default window. 
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonList">
            <summary>
            Represents a radio button list for the Common File Dialog.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl">
            <summary>
            Defines an abstract class that supports shared functionality for the 
            common file dialog controls.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl.textValue">
            <summary>
            Holds the text that is displayed for this control.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the text.
            </summary>
            <param name="text">The text of the common file dialog control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl.#ctor(System.String,System.String)">
            <summary>
            Creates a new instance of this class with the specified name and text.
            </summary>
            <param name="name">The name of the common file dialog control.</param>
            <param name="text">The text of the common file dialog control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach the custom control itself to the specified dialog
            </summary>
            <param name="dialog">the target dialog</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl.Text">
            <summary>
            Gets or sets the text string that is displayed on the control.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl.Enabled">
            <summary>
            Gets or sets a value that determines if this control is enabled.  
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl.Visible">
            <summary>
            Gets or sets a boolean value that indicates whether  
            this control is visible.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl.IsAdded">
            <summary>
            Has this control been added to the dialog
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.ICommonFileDialogIndexedControls">
            <summary>
            Specifies a property, event and method that indexed controls need
            to implement.
            </summary>
            
            <remarks>
            not sure where else to put this, so leaving here for now.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonList.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonList.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified name.
            </summary>
            <param name="name">The name of this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonList.Initialize">
            <summary>
            Initializes the item collection for this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonList.Microsoft#WindowsAPICodePack#Dialogs#Controls#ICommonFileDialogIndexedControls#RaiseSelectedIndexChangedEvent">
            <summary>
            Occurs when the user changes the SelectedIndex.
            </summary>
            <remarks>Because this method is defined in an interface, we can either
            have it as public, or make it private and explicitly implement (like below).
            Making it public doesn't really help as its only internal (but can't have this 
            internal because of the interface)
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonList.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach the RadioButtonList control to the dialog object
            </summary>
            <param name="dialog">The target dialog</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonList.Items">
            <summary>
            Gets the collection of CommonFileDialogRadioButtonListItem objects
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonList.SelectedIndex">
            <summary>
            Gets or sets the current index of the selected item.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonList.SelectedIndexChanged">
            <summary>
            Occurs when the user changes the SelectedIndex.
            </summary>
            
            <remarks>
            By initializing the SelectedIndexChanged event with an empty
            delegate, we can skip the test to determine
            if the SelectedIndexChanged is null.
            test.
            </remarks>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonListItem">
            <summary>
            Represents a list item for the CommonFileDialogRadioButtonList object.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonListItem.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonListItem.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified text.
            </summary>
            <param name="text">The string that you want to display for this list item.</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonListItem.Text">
            <summary>
            Gets or sets the string that will be displayed for this list item.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.FolderTypes">
            <summary>
            The FolderTypes values represent a view template applied to a folder, 
            usually based on its intended use and contents.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.NotSpecified">
            <summary>
            No particular content type has been detected or specified. This value is not supported in Windows 7 and later systems.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Invalid">
            <summary>
            The folder is invalid. There are several things that can cause this judgement: hard disk errors, file system errors, and compression errors among them.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Documents">
            <summary>
            The folder contains document files. These can be of mixed format—.doc, .txt, and others.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Pictures">
            <summary>
            Image files, such as .jpg, .tif, or .png files.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Music">
            <summary>
            Windows 7 and later. The folder contains audio files, such as .mp3 and .wma files.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.MusicIcons">
            <summary>
            A list of music files displayed in Icons view. This value is not supported in Windows 7 and later systems.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Games">
            <summary>
            The folder is the Games folder found in the Start menu.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.ControlPanelCategory">
            <summary>
            The Control Panel in category view. This is a virtual folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.ControlPanelClassic">
            <summary>
            The Control Panel in classic view. This is a virtual folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Printers">
            <summary>
            Printers that have been added to the system. This is a virtual folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.RecycleBin">
            <summary>
            The Recycle Bin. This is a virtual folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.SoftwareExplorer">
            <summary>
            The software explorer window used by the Add or Remove Programs control panel icon.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.CompressedFolder">
            <summary>
            The folder is a compressed archive, such as a compressed file with a .zip file name extension.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Contacts">
            <summary>
            An e-mail-related folder that contains contact information.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Library">
            <summary>
            A default library view without a more specific template. This value is not supported in Windows 7 and later systems.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.NetworkExplorer">
            <summary>
            The Network Explorer folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.UserFiles">
            <summary>
            The folder is the FOLDERID_UsersFiles folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.GenericSearchResults">
            <summary>
            Windows 7 and later. The folder contains search results, but they are of mixed or no specific type.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.GenericLibrary">
            <summary>
            Windows 7 and later. The folder is a library, but of no specified type.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Videos">
            <summary>
            Windows 7 and later. The folder contains video files. These can be of mixed format—.wmv, .mov, and others.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.UsersLibraries">
            <summary>
            Windows 7 and later. The view shown when the user clicks the Windows Explorer button on the taskbar.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.OtherUsers">
            <summary>
            Windows 7 and later. The homegroup view.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Communications">
            <summary>
            Windows 7 and later. A folder that contains communication-related files such as e-mails, calendar information, and contact information.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.RecordedTV">
            <summary>
            Windows 7 and later. The folder contains recorded television broadcasts.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.SavedGames">
            <summary>
            Windows 7 and later. The folder contains saved game states.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.OpenSearch">
            <summary>
            Windows 7 and later. The folder contains federated search OpenSearch results.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.SearchConnector">
            <summary>
            Windows 7 and later. Before you search.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderTypes.Searches">
            <summary>
            Windows 7 and later. A user's Searches folder, normally found at C:\Users\username\Searches.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserSelectionChangedEventHandler">
            <summary>
            Fires when the SelectedItems collection changes. 
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserItemsChangedEventHandler">
            <summary>
            Fires when the Items colection changes. 
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationPendingEventHandler">
            <summary>
            Fires when a navigation has been initiated, but is not yet complete.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationCompleteEventHandler">
            <summary>
            Fires when a navigation has been 'completed': no NavigationPending listener 
            has cancelled, and the ExplorerBorwser has created a new view. The view 
            will be populated with new items asynchronously, and ItemsChanged will be 
            fired to reflect this some time later.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationFailedEventHandler">
            <summary>
            Fires when either a NavigationPending listener cancels the navigation, or
            if the operating system determines that navigation is not possible.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewEnumerationCompleteHandler">
            <summary>
            Fires when the ExplorerBorwser view has finished enumerating files.
            </summary>
            <param name="sender">the explorer borwser</param>
            <param name="e">empty</param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserViewSelectedItemChangedHandler">
            <summary>
            Fires when the item selected in the view has changed (i.e., a rename ).
            This is not the same as SelectionChanged.
            </summary>
            <param name="sender">the explorer borwser</param>
            <param name="e">empty</param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.NavigationPendingEventArgs">
            <summary>
            Event argument for The NavigationPending event
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.NavigationPendingEventArgs.PendingLocation">
            <summary>
            The location being navigated to
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.NavigationPendingEventArgs.Cancel">
            <summary>
            Set to 'True' to cancel the navigation.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.NavigationCompleteEventArgs">
            <summary>
            Event argument for The NavigationComplete event
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.NavigationCompleteEventArgs.NewLocation">
            <summary>
            The new location of the explorer browser
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.NavigationFailedEventArgs">
            <summary>
            Event argument for the NavigatinoFailed event
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.NavigationFailedEventArgs.FailedLocation">
            <summary>
            The location the the browser would have navigated to.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.SortColumn">
            <summary>
            Stores information about how to sort a column that is displayed in the folder view.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SortColumn.#ctor(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,Microsoft.WindowsAPICodePack.Shell.SortDirection)">
            <summary>
            Creates a sort column with the specified direction for the given property.
            </summary>
            <param name="propertyKey">Property key for the property that the user will sort.</param>
            <param name="direction">The direction in which the items are sorted.</param>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SortColumn.PropertyKey">
            <summary>
            The ID of the column by which the user will sort. A PropertyKey structure. 
            For example, for the "Name" column, the property key is PKEY_ItemNameDisplay or
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemName"/>.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SortColumn.Direction">
            <summary>
            The direction in which the items are sorted.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder">
            <summary>
            Create and modify search folders.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellSearchCollection">
            <summary>
            Represents the base class for all search-related classes.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.#ctor(Microsoft.WindowsAPICodePack.Shell.SearchCondition,Microsoft.WindowsAPICodePack.Shell.ShellContainer[])">
            <summary>
            Create a simple search folder. Once the appropriate parameters are set, 
            the search folder can be enumerated to get the search results.
            </summary>
            <param name="searchCondition">Specific condition on which to perform the search (property and expected value)</param>
            <param name="searchScopePath">List of folders/paths to perform the search on. These locations need to be indexed by the system.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.#ctor(Microsoft.WindowsAPICodePack.Shell.SearchCondition,System.String[])">
            <summary>
            Create a simple search folder. Once the appropiate parameters are set, 
            the search folder can be enumerated to get the search results.
            </summary>
            <param name="searchCondition">Specific condition on which to perform the search (property and expected value)</param>
            <param name="searchScopePath">List of folders/paths to perform the search on. These locations need to be indexed by the system.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.SetStacks(System.String[])">
            <summary>
            Creates a list of stack keys, as specified. If this method is not called, 
            by default the folder will not be stacked.
            </summary>
            <param name="canonicalNames">Array of canonical names for properties on which the folder is stacked.</param>
            <exception cref="T:System.ArgumentException">If one of the given canonical names is invalid.</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.SetStacks(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey[])">
            <summary>
            Creates a list of stack keys, as specified. If this method is not called, 
            by default the folder will not be stacked.
            </summary>
            <param name="propertyKeys">Array of property keys on which the folder is stacked.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.SetFolderLogicalViewMode(Microsoft.WindowsAPICodePack.Shell.FolderLogicalViewMode)">
            <summary>
            Sets folder logical view mode. The default settings are based on the FolderTypeID which is set 
            by the SearchFolder::SetFolderTypeID method.        
            </summary>
            <param name="mode">The logical view mode to set.</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.SearchCondition">
            <summary>
            Gets the <see cref="T:Microsoft.WindowsAPICodePack.Shell.SearchCondition"/> of the search. 
            When this property is not set, the resulting search will have no filters applied.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.SearchScopePaths">
            <summary>
            Gets the search scope, as specified using an array of locations to search. 
            The search will include this location and all its subcontainers. The default is FOLDERID_Profile
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.DisplayName">
            <summary>
            Sets the search folder display name.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.IconSize">
            <summary>
            Sets the search folder icon size.
            The default settings are based on the FolderTypeID which is set by the 
            SearchFolder::SetFolderTypeID method.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.FolderTypeID">
            <summary>
            Sets a search folder type ID, as specified. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.VisibleColumns">
            <summary>
            Creates a new column list whose columns are all visible, 
            given an array of PropertyKey structures. The default is based on FolderTypeID.
            </summary>
            <remarks>This property may not work correctly with the ExplorerBrowser control.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.SortColumns">
            <summary>
            Creates a list of sort column directions, as specified.
            </summary>
            <remarks>This property may not work correctly with the ExplorerBrowser control.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellSearchFolder.GroupColumn">
            <summary>
            Sets a group column, as specified. If no group column is specified, no grouping occurs. 
            </summary>
            <remarks>This property may not work correctly with the ExplorerBrowser control.</remarks>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter">
            <summary>
            Creates a property writer capable of setting multiple properties for a given ShellObject.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.InPlaceStringTruncated">
            <summary>
            The value was set but truncated in a string value or rounded if a numeric value.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.WriteProperty(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,System.Object)">
            <summary>
            Writes the given property key and value.
            </summary>
            <param name="key">The property key.</param>
            <param name="value">The value associated with the key.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.WriteProperty(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,System.Object,System.Boolean)">
            <summary>
            Writes the given property key and value. To allow truncation of the given value, set allowTruncatedValue
            to true.
            </summary>
            <param name="key">The property key.</param>
            <param name="value">The value associated with the key.</param>
            <param name="allowTruncatedValue">True to allow truncation (default); otherwise False.</param>
            <exception cref="T:System.InvalidOperationException">If the writable property store is already 
            closed.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">If AllowTruncatedValue is set to false 
            and while setting the value on the property it had to be truncated in a string or rounded in 
            a numeric value.</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.WriteProperty(System.String,System.Object)">
            <summary>
            Writes the specified property given the canonical name and a value.
            </summary>
            <param name="canonicalName">The canonical name.</param>
            <param name="value">The property value.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.WriteProperty(System.String,System.Object,System.Boolean)">
            <summary>
            Writes the specified property given the canonical name and a value. To allow truncation of the given value, set allowTruncatedValue
            to true.
            </summary>
            <param name="canonicalName">The canonical name.</param>
            <param name="value">The property value.</param>
            <param name="allowTruncatedValue">True to allow truncation (default); otherwise False.</param>
            <exception cref="T:System.ArgumentException">If the given canonical name is not valid.</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.WriteProperty(Microsoft.WindowsAPICodePack.Shell.PropertySystem.IShellProperty,System.Object)">
            <summary>
            Writes the specified property using an IShellProperty and a value.
            </summary>
            <param name="shellProperty">The property name.</param>
            <param name="value">The property value.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.WriteProperty(Microsoft.WindowsAPICodePack.Shell.PropertySystem.IShellProperty,System.Object,System.Boolean)">
            <summary>
            Writes the specified property given an IShellProperty and a value. To allow truncation of the given value, set allowTruncatedValue
            to true.
            </summary>
            <param name="shellProperty">The property name.</param>
            <param name="value">The property value.</param>
            <param name="allowTruncatedValue">True to allow truncation (default); otherwise False.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.WriteProperty``1(Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty{``0},``0)">
            <summary>
            Writes the specified property using a strongly-typed ShellProperty and a value.
            </summary>
            <typeparam name="T">The type of the property name.</typeparam>
            <param name="shellProperty">The property name.</param>
            <param name="value">The property value.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.WriteProperty``1(Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty{``0},``0,System.Boolean)">
            <summary>
            Writes the specified property given a strongly-typed ShellProperty and a value. To allow truncation of the given value, set allowTruncatedValue
            to true.
            </summary>
            <typeparam name="T">The type of the property name.</typeparam>
            <param name="shellProperty">The property name.</param>
            <param name="value">The property value.</param>
            <param name="allowTruncatedValue">True to allow truncation (default); otherwise False.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.Finalize">
            <summary>
            
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.Dispose(System.Boolean)">
            <summary>
            Release the native and managed objects.
            </summary>
            <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.
            </param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.Close">
            <summary>
            Call this method to commit the writes (calls to WriteProperty method)
            and dispose off the writer.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyWriter.ParentShellObject">
            <summary>
            Reference to parent ShellObject (associated with this writer)
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellNonFileSystemFolder">
            <summary>
            Represents a Non FileSystem folder (e.g. My Computer, Control Panel)
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellFolder">
            <summary>
            Represents the base class for all types of folders (filesystem and non filesystem)
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControlCollection`1">
            <summary>
            Provides a strongly typed collection for dialog controls.
            </summary>
            <typeparam name="T">DialogControl</typeparam>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControlCollection`1.InsertItem(System.Int32,`0)">
            <summary>
            Inserts an dialog control at the specified index.
            </summary>
            <param name="index">The location to insert the control.</param>
            <param name="control">The item to insert.</param>
            <permission cref="T:System.InvalidOperationException">A control with 
            the same name already exists in this collection -or- 
            the control is being hosted by another dialog -or- the associated dialog is 
            showing and cannot be modified.</permission>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControlCollection`1.RemoveItem(System.Int32)">
            <summary>
            Removes the control at the specified index.
            </summary>
            <param name="index">The location of the control to remove.</param>
            <permission cref="T:System.InvalidOperationException">
            The associated dialog is 
            showing and cannot be modified.</permission>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControlCollection`1.GetControlbyId(System.Int32)">
            <summary>
            Recursively searches for the control who's id matches the value
            passed in the <paramref name="id"/> parameter.
            </summary>
            
            <param name="id">An integer containing the identifier of the 
            control being searched for.</param>
            
            <returns>A DialogControl who's id matches the value of the
            <paramref name="id"/> parameter.</returns>
            
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControlCollection`1.GetSubControlbyId(System.Collections.IEnumerable,System.Int32)">
            <summary>
            Recursively searches for a given control id in the 
            collection passed via the <paramref name="ctrlColl"/> parameter.
            </summary>
            
            <param name="ctrlColl">A Collection&lt;CommonFileDialogControl&gt;</param>
            <param name="id">An int containing the identifier of the control 
            being searched for.</param>
            
            <returns>A DialogControl who's Id matches the value of the
            <paramref name="id"/> parameter.</returns>
            
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControlCollection`1.Item(System.String)">
             <summary>
             Defines the indexer that supports accessing controls by name. 
             </summary>
             <remarks>
             <para>Control names are case sensitive.</para>
             <para>This indexer is useful when the dialog is created in XAML
             rather than constructed in code.</para></remarks>
            <exception cref="T:System.ArgumentException">
             The name cannot be null or a zero-length string.</exception>
             <remarks>If there is more than one control with the same name, only the <B>first control</B> will be returned.</remarks>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserPaneVisibility">
            <summary>
            Controls the visibility of the various ExplorerBrowser panes on subsequent navigation
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserPaneVisibility.Navigation">
            <summary>
            The pane on the left side of the Windows Explorer window that hosts the folders tree and Favorites.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserPaneVisibility.Commands">
            <summary>
            Commands module along the top of the Windows Explorer window.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserPaneVisibility.CommandsOrganize">
            <summary>
            Organize menu within the commands module.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserPaneVisibility.CommandsView">
            <summary>
            View menu within the commands module.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserPaneVisibility.Details">
            <summary>
            Pane showing metadata along the bottom of the Windows Explorer window.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserPaneVisibility.Preview">
            <summary>
            Pane on the right of the Windows Explorer window that shows a large reading preview of the file.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserPaneVisibility.Query">
            <summary>
            Quick filter buttons to aid in a search.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserPaneVisibility.AdvancedQuery">
            <summary>
            Additional fields and options to aid in a search.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions">
            <summary>
            These options control how the content of the Explorer Browser 
            is rendered.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.ViewMode">
            <summary>
            The viewing mode of the Explorer Browser
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.Flags">
            <summary>
            The binary representation of the ExplorerBrowser content flags
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.AlignLeft">
            <summary>
            The view should be left-aligned. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.AutoArrange">
            <summary>
            Automatically arrange the elements in the view. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.CheckSelect">
            <summary>
            Turns on check mode for the view
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.ExtendedTiles">
            <summary>
            When the view is in "tile view mode" the layout of a single item should be extended to the width of the view.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.FullRowSelect">
            <summary>
            When an item is selected, the item and all its sub-items are highlighted.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.HideFileNames">
            <summary>
            The view should not display file names
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.NoBrowserViewState">
            <summary>
            The view should not save view state in the browser.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.NoColumnHeader">
            <summary>
            Do not display a column header in the view in any view mode.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.NoHeaderInAllViews">
            <summary>
            Only show the column header in details view mode.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.NoIcons">
            <summary>
            The view should not display icons. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.NoSubfolders">
            <summary>
            Do not show subfolders. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.SingleClickActivate">
            <summary>
            Navigate with a single click
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.SingleSelection">
            <summary>
            Do not allow more than a single item to be selected.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserContentOptions.ThumbnailSize">
            <summary>
            The size of the thumbnails in pixels
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.AeroGlassCompositionChangedEvenArgs">
            <summary>
            Event argument for The GlassAvailabilityChanged event
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.AeroGlassCompositionChangedEvenArgs.GlassAvailable">
            <summary>
            The new GlassAvailable state
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.AeroGlassCompositionChangedEvent">
            <summary>
            Sent when the availability of the desktop Glass effect is changed
            </summary>
            <param name="sender">The AeroGlassWindow that is affected by this change</param>
            <param name="e">The new state of the glass availability</param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.JumpListKnownCategoryType">
            <summary>
            Known category to display
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.JumpListKnownCategoryType.Neither">
            <summary>
            Don't display either known category. You must have at least one
            user task or custom category link in order to not see the
            default 'Recent' known category
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.JumpListKnownCategoryType.Recent">
            <summary>
            Display the 'Recent' known category
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.JumpListKnownCategoryType.Frequent">
            <summary>
            Display the 'Frequent' known category
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.TaskbarProgressBarState">
            <summary>
            Represents the thumbnail progress bar state.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.TaskbarProgressBarState.NoProgress">
            <summary>
            No progress is displayed.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.TaskbarProgressBarState.Indeterminate">
            <summary>
            The progress is indeterminate (marquee).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.TaskbarProgressBarState.Normal">
            <summary>
            Normal progress is displayed.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.TaskbarProgressBarState.Error">
            <summary>
            An error occurred (red).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.TaskbarProgressBarState.Paused">
            <summary>
            The operation is paused (yellow).
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.StockIcons">
            <summary>
            Collection of all the standard system stock icons
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.StockIcons.#ctor">
            <summary>
            Creates a stock icon collection using the default options for 
            size, link overlay and selection state.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.StockIcons.#ctor(Microsoft.WindowsAPICodePack.Shell.StockIconSizes,System.Boolean,System.Boolean)">
            <summary>
            Overloaded constructor that takes in size and Boolean values for 
            link overlay and selected icon state. The settings are applied to 
            all the stock icons in the collection.
            </summary>
            <param name="size">StockIcon size for all the icons in the collection.</param>
            <param name="linkOverlay">Link Overlay state for all the icons in the collection.</param>
            <param name="selected">Selection state for all the icons in the collection.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.StockIcons.GetStockIcon(Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier)">
            <summary>
            Returns the existing stock icon from the internal cache, or creates a new one
            based on the current settings if it's not in the cache.
            </summary>
            <param name="stockIconIdentifier">Unique identifier for the requested stock icon</param>
            <returns>Stock Icon based on the identifier given (either from the cache or created new)</returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DefaultSize">
            <summary>
            Gets the default stock icon size in one of the StockIconSizes values.
            This size applies to all the stock icons in the collection.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DefaultLinkOverlay">
            <summary>
            Gets the default link overlay state for the icon. This property 
            applies to all the stock icons in the collection.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DefaultSelectedState">
            <summary>
            Gets the default selected state for the icon. This property 
            applies to all the stock icons in the collection.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.AllStockIcons">
            <summary>
            Gets a collection of all the system stock icons
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DocumentNotAssociated">
            <summary>
            Icon for a document (blank page), no associated program.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DocumentAssociated">
            <summary>
            Icon for a document with an associated program.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Application">
            <summary>
             Icon for a generic application with no custom icon.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Folder">
            <summary>
             Icon for a closed folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.FolderOpen">
            <summary>
            Icon for an open folder. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Drive525">
            <summary>
            Icon for a 5.25" floppy disk drive.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Drive35">
            <summary>
             Icon for a 3.5" floppy disk drive. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DriveRemove">
            <summary>
             Icon for a removable drive.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DriveFixed">
            <summary>
             Icon for a fixed (hard disk) drive.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DriveNetwork">
            <summary>
             Icon for a network drive.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DriveNetworkDisabled">
            <summary>
             Icon for a disconnected network drive.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DriveCD">
            <summary>
             Icon for a CD drive.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DriveRam">
            <summary>
             Icon for a RAM disk drive. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.World">
            <summary>
             Icon for an entire network. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Server">
            <summary>
             Icon for a computer on the network.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Printer">
            <summary>
             Icon for a printer. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MyNetwork">
            <summary>
            Icon for My Network places.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Find">
            <summary>
            Icon for search (magnifying glass).
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Help">
            <summary>
             Icon for help.     
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Share">
            <summary>
             Icon for an overlay indicating shared items.        
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Link">
            <summary>
             Icon for an overlay indicating shortcuts to items.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.SlowFile">
            <summary>
            Icon for an overlay for slow items.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Recycler">
            <summary>
             Icon for a empty recycle bin.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.RecyclerFull">
            <summary>
             Icon for a full recycle bin.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaCDAudio">
            <summary>
             Icon for audio CD media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Lock">
            <summary>
             Icon for a security lock.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.AutoList">
            <summary>
             Icon for a auto list.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.PrinterNet">
            <summary>
            Icon for a network printer.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.ServerShare">
            <summary>
             Icon for a server share.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.PrinterFax">
            <summary>
             Icon for a Fax printer.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.PrinterFaxNet">
            <summary>
            Icon for a networked Fax printer.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.PrinterFile">
            <summary>
             Icon for print to file.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Stack">
            <summary>
            Icon for a stack.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaSvcd">
            <summary>
             Icon for a SVCD media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.StuffedFolder">
            <summary>
             Icon for a folder containing other items.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DriveUnknown">
            <summary>
             Icon for an unknown drive.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DriveDvd">
            <summary>
             Icon for a DVD drive. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaDvd">
            <summary>
            Icon for DVD media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaDvdRam">
            <summary>
             Icon for DVD-RAM media.   
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaDvdRW">
            <summary>
            Icon for DVD-RW media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaDvdR">
            <summary>
             Icon for DVD-R media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaDvdRom">
            <summary>
             Icon for a DVD-ROM media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaCDAudioPlus">
            <summary>
             Icon for CD+ (Enhanced CD) media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaCDRW">
            <summary>
             Icon for CD-RW media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaCDR">
            <summary>
             Icon for a CD-R media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaCDBurn">
            <summary>
             Icon burning a CD.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaBlankCD">
            <summary>
             Icon for blank CD media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaCDRom">
            <summary>
             Icon for CD-ROM media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.AudioFiles">
            <summary>
             Icon for audio files.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.ImageFiles">
            <summary>
             Icon for image files.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.VideoFiles">
            <summary>
             Icon for video files.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MixedFiles">
            <summary>
             Icon for mixed Files.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.FolderBack">
            <summary>
            Icon for a folder back.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.FolderFront">
            <summary>
             Icon for a folder front.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Shield">
            <summary>
             Icon for a security shield. Use for UAC prompts only.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Warning">
            <summary>
             Icon for a warning.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Info">
            <summary>
             Icon for an informational message.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Error">
            <summary>
             Icon for an error message.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Key">
            <summary>
             Icon for a key.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Software">
            <summary>
             Icon for software.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Rename">
            <summary>
             Icon for a rename.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Delete">
            <summary>
             Icon for delete.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaAudioDvd">
            <summary>
             Icon for audio DVD media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaMovieDvd">
            <summary>
             Icon for movie DVD media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaEnhancedCD">
            <summary>
             Icon for enhanced CD media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaEnhancedDvd">
            <summary>
             Icon for enhanced DVD media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaHDDvd">
            <summary>
             Icon for HD-DVD media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaBluRay">
            <summary>
             Icon for BluRay media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaVcd">
            <summary>
             Icon for VCD media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaDvdPlusR">
            <summary>
             Icon for DVD+R media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaDvdPlusRW">
            <summary>
             Icon for DVD+RW media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DesktopPC">
            <summary>
             Icon for desktop computer.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MobilePC">
            <summary>
             Icon for mobile computer (laptop/notebook).
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Users">
            <summary>
             Icon for users.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaSmartMedia">
            <summary>
             Icon for smart media.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaCompactFlash">
            <summary>
             Icon for compact flash.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DeviceCellPhone">
            <summary>
             Icon for a cell phone.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DeviceCamera">
            <summary>
             Icon for a camera.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DeviceVideoCamera">
            <summary>
             Icon for video camera.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DeviceAudioPlayer">
            <summary>
             Icon for audio player.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.NetworkConnect">
            <summary>
             Icon for connecting to network.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Internet">
            <summary>
             Icon for the Internet.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.ZipFile">
            <summary>
             Icon for a ZIP file.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.Settings">
            <summary>
            Icon for settings.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DriveHDDVD">
            <summary>
            HDDVD Drive (all types)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.DriveBluRay">
            <summary>
            Icon for BluRay Drive (all types)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaHDDVDROM">
            <summary>
            Icon for HDDVD-ROM Media
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaHDDVDR">
            <summary>
            Icon for HDDVD-R Media
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaHDDVDRAM">
            <summary>
            Icon for HDDVD-RAM Media
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaBluRayROM">
            <summary>
            Icon for BluRay ROM Media
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaBluRayR">
            <summary>
            Icon for BluRay R Media
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.MediaBluRayRE">
            <summary>
            Icon for BluRay RE Media (Rewriable and RAM)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcons.ClusteredDisk">
            <summary>
            Icon for Clustered disk
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogCheckBox">
            <summary>
            Creates the check button controls used by the Common File Dialog.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogProminentControl">
            <summary>
            Defines the properties and constructors for all prominent controls in the Common File Dialog.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogProminentControl.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogProminentControl.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified text.
            </summary>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogProminentControl.#ctor(System.String,System.String)">
            <summary>
            Creates a new instance of this class with the specified name and text.
            </summary>
            <param name="name">The name of this control.</param>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogProminentControl.IsProminent">
            <summary>
            Gets or sets the prominent value of this control. 
            </summary>
            <remarks>Only one control can be specified as prominent. If more than one control is specified prominent, 
            then an 'E_UNEXPECTED' exception will be thrown when these controls are added to the dialog. 
            A group box control can only be specified as prominent if it contains one control and that control is of type 'CommonFileDialogProminentControl'.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogCheckBox.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogCheckBox.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified text.
            </summary>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogCheckBox.#ctor(System.String,System.String)">
            <summary>
            Creates a new instance of this class with the specified name and text.
            </summary>
            <param name="name">The name of this control.</param>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogCheckBox.#ctor(System.String,System.Boolean)">
            <summary>
            Creates a new instance of this class with the specified text and check state.
            </summary>
            <param name="text">The text to display for this control.</param>
            <param name="isChecked">The check state of this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogCheckBox.#ctor(System.String,System.String,System.Boolean)">
            <summary>
            Creates a new instance of this class with the specified name, text and check state.
            </summary>
            <param name="name">The name of this control.</param>
            <param name="text">The text to display for this control.</param>
            <param name="isChecked">The check state of this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogCheckBox.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach the CheckButton control to the dialog object.
            </summary>
            <param name="dialog">the target dialog</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogCheckBox.IsChecked">
            <summary>
            Gets or sets the state of the check box.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogCheckBox.CheckedChanged">
            <summary>
            Occurs when the user changes the check state.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationLog">
            <summary>
            The navigation log is a history of the locations visited by the explorer browser. 
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationLog.ClearLog">
            <summary>
            Clears the contents of the navigation log.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationLog.pendingNavigation">
            <summary>
            The pending navigation log action. null if the user is not navigating 
            via the navigation log.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationLog.currentLocationIndex">
            <summary>
            The index into the Locations collection. -1 if the Locations colleciton 
            is empty.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationLog.CanNavigateForward">
            <summary>
            Indicates the presence of locations in the log that can be 
            reached by calling Navigate(Forward)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationLog.CanNavigateBackward">
            <summary>
            Indicates the presence of locations in the log that can be 
            reached by calling Navigate(Backward)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationLog.Locations">
            <summary>
            The navigation log
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationLog.CurrentLocationIndex">
            <summary>
            An index into the Locations collection. The ShellObject pointed to 
            by this index is the current location of the ExplorerBrowser.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationLog.CurrentLocation">
            <summary>
            Gets the shell object in the Locations collection pointed to
            by CurrentLocationIndex.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationLog.NavigationLogChanged">
            <summary>
            Fires when the navigation log changes or 
            the current navigation position changes
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.PendingNavigation">
            <summary>
            A navigation traversal request
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.SearchCondition">
            <summary>
            Exposes properties and methods for retrieving information about a search condition.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchCondition.GetSubConditions">
            <summary>
            Retrieves an array of the sub-conditions. 
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchCondition.Finalize">
            <summary>
            
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchCondition.Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchCondition.Dispose(System.Boolean)">
            <summary>
            Release the native objects.
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.SearchCondition.PropertyCanonicalName">
            <summary>
            The name of a property to be compared or NULL for an unspecified property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.SearchCondition.PropertyKey">
            <summary>
            The property key for the property that is to be compared.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.SearchCondition.PropertyValue">
            <summary>
            A value (in <see cref="T:System.String"/> format) to which the property is compared. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.SearchCondition.ConditionOperation">
            <summary>
            Search condition operation to be performed on the property/value combination.
            See <see cref="T:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation"/> for more details.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.SearchCondition.ConditionType">
            <summary>
            Represents the condition type for the given node. 
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.IconReference">
            <summary>
            A refence to an icon resource 
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.IconReference.#ctor(System.String,System.Int32)">
            <summary>
            Overloaded constructor takes in the module name and resource id for the icon reference.
            </summary>
            <param name="moduleName">String specifying the name of an executable file, DLL, or icon file</param>
            <param name="resourceId">Zero-based index of the icon</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.IconReference.#ctor(System.String)">
            <summary>
            Overloaded constructor takes in the module name and resource id separated by a comma.
            </summary>
            <param name="refPath">Reference path for the icon consiting of the module name and resource id.</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IconReference.ModuleName">
            <summary>
            String specifying the name of an executable file, DLL, or icon file
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IconReference.ResourceId">
            <summary>
            Zero-based index of the icon
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IconReference.ReferencePath">
            <summary>
            Reference to a specific icon within a EXE, DLL or icon file.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellSavedSearchCollection">
            <summary>
            Represents a saved search
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.IShellProperty">
            <summary>
            Defines the properties used by a Shell Property.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.IShellProperty.FormatForDisplay(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat)">
            <summary>
            Gets a formatted, Unicode string representation of a property value.
            </summary>
            <param name="format">One or more <c>PropertyDescriptionFormat</c> flags 
            chosen to produce the desired display format.</param>
            <returns>The formatted value as a string.</returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.IShellProperty.PropertyKey">
            <summary>
            Gets the property key that identifies this property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.IShellProperty.Description">
            <summary>
            Get the property description object.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.IShellProperty.CanonicalName">
            <summary>
            Gets the case-sensitive name of the property as it is known to the system, 
            regardless of its localized name.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.IShellProperty.ValueAsObject">
            <summary>
            Gets the value for this property using the generic Object type.
            </summary>
            <remarks>
            To obtain a specific type for this value, use the more strongly-typed 
            <c>Property&lt;T&gt;</c> class.
            You can only set a value for this type using the <c>Property&lt;T&gt;</c> 
            class.
            </remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.IShellProperty.ValueType">
            <summary>
            Gets the <c>System.Type</c> value for this property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.IShellProperty.IconReference">
            <summary>
            Gets the image reference path and icon index associated with a property value. 
            This API is only available in Windows 7.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogStandardFilters">
            <summary>
            Defines the class of commonly used file filters.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogStandardFilters.TextFiles">
            <summary>
            Gets a value that specifies the filter for *.txt files.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogStandardFilters.PictureFiles">
            <summary>
            Gets a value that specifies the filter for picture files.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogStandardFilters.OfficeFiles">
            <summary>
            Gets a value that specifies the filter for Microsoft Office files.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogResult">
            <summary>
            Specifies identifiers to indicate the return value of a CommonFileDialog dialog.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogResult.OK">
            <summary>
            The dialog box return value is OK (usually sent from a button labeled OK or Save).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogResult.Cancel">
            <summary>
            The dialog box return value is Cancel (usually sent from a button labeled Cancel).
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationOptions">
            <summary>
            These options control the results subsequent navigations of the ExplorerBrowser
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationOptions.Flags">
            <summary>
            The binary flags that are passed to the explorer browser control's GetOptions/SetOptions methods
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationOptions.NavigateOnce">
            <summary>
            Do not navigate further than the initial navigation.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationOptions.AlwaysNavigate">
            <summary>
            Always navigate, even if you are attempting to navigate to the current folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNavigationOptions.PaneVisibility">
            <summary>
            Controls the visibility of the various ExplorerBrowser panes on subsequent navigation
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser">
            <summary>
            Interaction logic for ExplorerBrowser.xaml
            </summary>
            <summary>
            ExplorerBrowser
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.#ctor">
            <summary>
            Hosts the ExplorerBrowser WinForms wrapper in this control
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.ExplorerBrowser_Loaded(System.Object,System.Windows.RoutedEventArgs)">
            <summary>
            To avoid the 'Dispatcher processing has been suspended' InvalidOperationException on Win7,
            the ExplorerBorwser native control is initialized after this control is fully loaded.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.UpdateDependencyPropertiesFromCLRPRoperties(System.Object,System.EventArgs)">
            <summary>
            Map changes to the CLR flags to the dependency properties
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NavigationLogChanged(System.Object,Microsoft.WindowsAPICodePack.Controls.NavigationLogEventArgs)">
            <summary>
            Synchronize NavigationLog collection to dependency collection
            </summary>
            <param name="sender"></param>
            <param name="args"></param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.SelectionChanged(System.Object,System.EventArgs)">
            <summary>
            Synchronize SelectedItems collection to dependency collection
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.ItemsProperty">
            <summary>
            The items in the ExplorerBrowser window
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NavigationLogProperty">
            <summary>
            The NavigaitonLog
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.SelectedItemsProperty">
            <summary>
            The selected items in the ExplorerBrowser window
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.InitializeComponent">
            <summary>
            InitializeComponent
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.ExplorerBrowserControl">
            <summary>
            The underlying WinForms control
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.Items">
            <summary>
            The items in the ExplorerBrowser window
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.SelectedItems">
            <summary>
            The selected items in the ExplorerBrowser window
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NavigationLog">
            <summary>
            The selected items in the ExplorerBrowser window
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NavigationTarget">
            <summary>
            The location the explorer browser is navigating to
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.AlignLeft">
            <summary>
            The view should be left-aligned. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.AutoArrange">
            <summary>
            Automatically arrange the elements in the view. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.CheckSelect">
            <summary>
            Turns on check mode for the view
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.ExtendedTiles">
            <summary>
            When the view is in "tile view mode" the layout of a single item should be extended to the width of the view.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.FullRowSelect">
            <summary>
            When an item is selected, the item and all its sub-items are highlighted.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.HideFileNames">
            <summary>
            The view should not display file names
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NoBrowserViewState">
            <summary>
            The view should not save view state in the browser.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NoColumnHeader">
            <summary>
            Do not display a column header in the view in any view mode.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NoHeaderInAllViews">
            <summary>
            Only show the column header in details view mode.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NoIcons">
            <summary>
            The view should not display icons. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NoSubfolders">
            <summary>
            Do not show subfolders. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.SingleClickActivate">
            <summary>
            Navigate with a single click
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.SingleSelection">
            <summary>
            Do not allow more than a single item to be selected.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.ThumbnailSize">
            <summary>
            The size of the thumbnails in the explorer browser
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.ViewMode">
            <summary>
            The various view modes of the explorer browser control
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.AlwaysNavigate">
            <summary>
            Always navigate, even if you are attempting to navigate to the current folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NavigateOnce">
            <summary>
            Do not navigate further than the initial navigation.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.AdvancedQueryPane">
            <summary>
            Show/Hide the AdvancedQuery pane on subsequent navigation
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.CommandsPane">
            <summary>
            Show/Hide the Commands pane on subsequent navigation
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.CommandsOrganizePane">
            <summary>
            Show/Hide the Organize menu in the Commands pane on subsequent navigation
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.CommandsViewPane">
            <summary>
            Show/Hide the View menu in the Commands pane on subsequent navigation
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.DetailsPane">
            <summary>
            Show/Hide the Details pane on subsequent navigation
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NavigationPane">
            <summary>
            Show/Hide the Navigation pane on subsequent navigation
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.PreviewPane">
            <summary>
            Show/Hide the Preview pane on subsequent navigation
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.QueryPane">
            <summary>
            Show/Hide the Query pane on subsequent navigation
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.ExplorerBrowser.NavigationLogIndex">
            <summary>
            Navigation log index
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.GlassWindow">
            <summary>
            WPF Glass Window
            Inherit from this window class to enable glass on a WPF window
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.GlassWindow.SetAeroGlassTransparency">
            <summary>
            Makes the background of current window transparent from both Wpf and Windows Perspective
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.GlassWindow.ExcludeElementFromAeroGlass(System.Windows.FrameworkElement)">
            <summary>
            Excludes a UI element from the AeroGlass frame.
            </summary>
            <param name="element">The element to exclude.</param>
            <remarks>Many non-WPF rendered controls (i.e., the ExplorerBrowser control) will not 
            render properly on top of an AeroGlass frame. </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.GlassWindow.ResetAreoGlass">
            <summary>
            Resets the AeroGlass exclusion area.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.GlassWindow.OnSourceInitialized(System.EventArgs)">
            <summary>
            OnSourceInitialized
            Override SourceInitialized to initialize windowHandle for this window.
            A valid windowHandle is available only after the sourceInitialized is completed
            </summary>
            <param name="e">EventArgs</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.GlassWindow.AeroGlassCompositionEnabled">
            <summary>
            Get determines if AeroGlass is enabled on the desktop. Set enables/disables AreoGlass on the desktop.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Shell.GlassWindow.AeroGlassCompositionChanged">
            <summary>
            Fires when the availability of Glass effect changes.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.WindowsForms.CommandLink">
            <summary>
            Implements a CommandLink button that can be used in 
            WinForms user interfaces.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.CommandLink.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.CommandLink.CreateParams">
            <summary>
            Gets a System.Windows.Forms.CreateParams on the base class when 
            creating a window.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.CommandLink.DefaultSize">
            <summary>
            Increase default width.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.CommandLink.NoteText">
            <summary>
            Specifies the supporting note text
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.CommandLink.ShieldIcon">
            <summary>
            Enable shield icon to be set at design-time.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.CommandLink.IsPlatformSupported">
            <summary>
            Indicates whether this feature is supported on the current platform.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellHelper">
            <summary>
            A helper class for Shell Objects
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory">
            <summary>
            Provides methods for creating or resolving a condition tree 
            that was obtained by parsing a query string.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateLeafCondition(System.String,System.String,Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation)">
            <summary>
            Creates a leaf condition node that represents a comparison of property value and constant value. 
            </summary>
            <param name="propertyName">The name of a property to be compared, or null for an unspecified property. 
            The locale name of the leaf node is LOCALE_NAME_USER_DEFAULT.</param>
            <param name="value">The constant value against which the property value should be compared.</param>
            <param name="operation">Specific condition to be used when comparing the actual value and the expected value of the given property</param>
            <returns>SearchCondition based on the given parameters</returns>
            <remarks>
            The search will only work for files that are indexed, as well as the specific properties are indexed. To find 
            the properties that are indexed, look for the specific property's property description and 
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags"/> property for IsQueryable flag.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateLeafCondition(System.String,System.DateTime,Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation)">
            <summary>
            Creates a leaf condition node that represents a comparison of property value and constant value. 
            Overload method takes a DateTime parameter for the comparison value.
            </summary>
            <param name="propertyName">The name of a property to be compared, or null for an unspecified property. 
            The locale name of the leaf node is LOCALE_NAME_USER_DEFAULT.</param>
            <param name="value">The DateTime value against which the property value should be compared.</param>
            <param name="operation">Specific condition to be used when comparing the actual value and the expected value of the given property</param>
            <returns>SearchCondition based on the given parameters</returns>
            <remarks>
            The search will only work for files that are indexed, as well as the specific properties are indexed. To find 
            the properties that are indexed, look for the specific property's property description and 
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags"/> property for IsQueryable flag.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateLeafCondition(System.String,System.Int32,Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation)">
            <summary>
            Creates a leaf condition node that represents a comparison of property value and Integer value. 
            </summary>
            <param name="propertyName">The name of a property to be compared, or null for an unspecified property. 
            The locale name of the leaf node is LOCALE_NAME_USER_DEFAULT.</param>
            <param name="value">The Integer value against which the property value should be compared.</param>
            <param name="operation">Specific condition to be used when comparing the actual value and the expected value of the given property</param>
            <returns>SearchCondition based on the given parameters</returns>
            <remarks>
            The search will only work for files that are indexed, as well as the specific properties are indexed. To find 
            the properties that are indexed, look for the specific property's property description and 
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags"/> property for IsQueryable flag.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateLeafCondition(System.String,System.Boolean,Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation)">
            <summary>
            Creates a leaf condition node that represents a comparison of property value and Boolean value. 
            </summary>
            <param name="propertyName">The name of a property to be compared, or null for an unspecified property. 
            The locale name of the leaf node is LOCALE_NAME_USER_DEFAULT.</param>
            <param name="value">The Boolean value against which the property value should be compared.</param>
            <param name="operation">Specific condition to be used when comparing the actual value and the expected value of the given property</param>
            <returns>SearchCondition based on the given parameters</returns>
            <remarks>
            The search will only work for files that are indexed, as well as the specific properties are indexed. To find 
            the properties that are indexed, look for the specific property's property description and 
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags"/> property for IsQueryable flag.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateLeafCondition(System.String,System.Double,Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation)">
            <summary>
            Creates a leaf condition node that represents a comparison of property value and Floating Point value. 
            </summary>
            <param name="propertyName">The name of a property to be compared, or null for an unspecified property. 
            The locale name of the leaf node is LOCALE_NAME_USER_DEFAULT.</param>
            <param name="value">The Floating Point value against which the property value should be compared.</param>
            <param name="operation">Specific condition to be used when comparing the actual value and the expected value of the given property</param>
            <returns>SearchCondition based on the given parameters</returns>
            <remarks>
            The search will only work for files that are indexed, as well as the specific properties are indexed. To find 
            the properties that are indexed, look for the specific property's property description and 
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags"/> property for IsQueryable flag.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateLeafCondition(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,System.String,Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation)">
            <summary>
            Creates a leaf condition node that represents a comparison of property value and constant value. 
            </summary>
            <param name="propertyKey">The property to be compared.</param>
            <param name="value">The constant value against which the property value should be compared.</param>
            <param name="operation">Specific condition to be used when comparing the actual value and the expected value of the given property</param>
            <returns>SearchCondition based on the given parameters</returns>
            <remarks>
            The search will only work for files that are indexed, as well as the specific properties are indexed. To find 
            the properties that are indexed, look for the specific property's property description and 
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags"/> property for IsQueryable flag.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateLeafCondition(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,System.DateTime,Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation)">
            <summary>
            Creates a leaf condition node that represents a comparison of property value and constant value. 
            Overload method takes a DateTime parameter for the comparison value.
            </summary>
            <param name="propertyKey">The property to be compared.</param>
            <param name="value">The DateTime value against which the property value should be compared.</param>
            <param name="operation">Specific condition to be used when comparing the actual value and the expected value of the given property</param>
            <returns>SearchCondition based on the given parameters</returns>
            <remarks>
            The search will only work for files that are indexed, as well as the specific properties are indexed. To find 
            the properties that are indexed, look for the specific property's property description and 
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags"/> property for IsQueryable flag.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateLeafCondition(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,System.Boolean,Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation)">
            <summary>
            Creates a leaf condition node that represents a comparison of property value and Boolean value. 
            Overload method takes a DateTime parameter for the comparison value.
            </summary>
            <param name="propertyKey">The property to be compared.</param>
            <param name="value">The boolean value against which the property value should be compared.</param>
            <param name="operation">Specific condition to be used when comparing the actual value and the expected value of the given property</param>
            <returns>SearchCondition based on the given parameters</returns>
            <remarks>
            The search will only work for files that are indexed, as well as the specific properties are indexed. To find 
            the properties that are indexed, look for the specific property's property description and 
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags"/> property for IsQueryable flag.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateLeafCondition(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,System.Double,Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation)">
            <summary>
            Creates a leaf condition node that represents a comparison of property value and Floating Point value. 
            Overload method takes a DateTime parameter for the comparison value.
            </summary>
            <param name="propertyKey">The property to be compared.</param>
            <param name="value">The Floating Point value against which the property value should be compared.</param>
            <param name="operation">Specific condition to be used when comparing the actual value and the expected value of the given property</param>
            <returns>SearchCondition based on the given parameters</returns>
            <remarks>
            The search will only work for files that are indexed, as well as the specific properties are indexed. To find 
            the properties that are indexed, look for the specific property's property description and 
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags"/> property for IsQueryable flag.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateLeafCondition(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,System.Int32,Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation)">
            <summary>
            Creates a leaf condition node that represents a comparison of property value and Integer value. 
            Overload method takes a DateTime parameter for the comparison value.
            </summary>
            <param name="propertyKey">The property to be compared.</param>
            <param name="value">The Integer value against which the property value should be compared.</param>
            <param name="operation">Specific condition to be used when comparing the actual value and the expected value of the given property</param>
            <returns>SearchCondition based on the given parameters</returns>
            <remarks>
            The search will only work for files that are indexed, as well as the specific properties are indexed. To find 
            the properties that are indexed, look for the specific property's property description and 
            <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags"/> property for IsQueryable flag.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateAndOrCondition(Microsoft.WindowsAPICodePack.Shell.SearchConditionType,System.Boolean,Microsoft.WindowsAPICodePack.Shell.SearchCondition[])">
            <summary>
            Creates a condition node that is a logical conjunction ("AND") or disjunction ("OR") 
            of a collection of subconditions.
            </summary>
            <param name="conditionType">The SearchConditionType of the condition node. 
            Must be either AndCondition or OrCondition.</param>
            <param name="simplyfy">TRUE to logically simplify the result, if possible; 
            then the result will not necessarily to be of the specified kind. FALSE if the result should 
            have exactly the prescribed structure. An application that plans to execute a query based on the 
            condition tree would typically benefit from setting this parameter to TRUE. </param>
            <param name="conditionNodes">Array of subconditions</param>
            <returns>New SearchCondition based on the operation</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.CreateNotCondition(Microsoft.WindowsAPICodePack.Shell.SearchCondition,System.Boolean)">
            <summary>
            Creates a condition node that is a logical negation (NOT) of another condition 
            (a subnode of this node). 
            </summary>
            <param name="conditionToBeNegated">SearchCondition node to be negated.</param>
            <param name="simplyfy">True to logically simplify the result if possible; False otherwise. 
            In a query builder scenario, simplyfy should typically be set to false.</param>
            <returns>New SearchCondition</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.ParseStructuredQuery(System.String)">
            <summary>
            Parses an input string that contains Structured Query keywords (using Advanced Query Syntax 
            or Natural Query Syntax) and produces a SearchCondition object.
            </summary>
            <param name="query">The query to be parsed</param>
            <returns>Search condition resulting from the query</returns>
            <remarks>For more information on structured query syntax, visit http://msdn.microsoft.com/en-us/library/bb233500.aspx and
            http://www.microsoft.com/windows/products/winfamily/desktopsearch/technicalresources/advquery.mspx</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory.ParseStructuredQuery(System.String,System.Globalization.CultureInfo)">
            <summary>
            Parses an input string that contains Structured Query keywords (using Advanced Query Syntax 
            or Natural Query Syntax) and produces a SearchCondition object.
            </summary>
            <param name="query">The query to be parsed</param>
            <param name="cultureInfo">The culture used to select the localized language for keywords.</param>
            <returns>Search condition resulting from the query</returns>
            <remarks>For more information on structured query syntax, visit http://msdn.microsoft.com/en-us/library/bb233500.aspx and
            http://www.microsoft.com/windows/products/winfamily/desktopsearch/technicalresources/advquery.mspx</remarks>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection">
            <summary>
            Creates a readonly collection of IProperty objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection.#ctor(Microsoft.WindowsAPICodePack.Shell.PropertySystem.IPropertyStore)">
            <summary>
            Creates a new Property collection given an IPropertyStore object
            </summary>
            <param name="nativePropertyStore">IPropertyStore</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection.#ctor(Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Creates a new Property collection given an IShellItem2 native interface
            </summary>
            <param name="parent">Parent ShellObject</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection.#ctor(System.String)">
            <summary>
            Creates a new <c>ShellPropertyCollection</c> object with the specified file or folder path.
            </summary>
            <param name="path">The path to the file or folder.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection.Contains(System.String)">
            <summary>
            Checks if a property with the given canonical name is available.
            </summary>
            <param name="canonicalName">The canonical name of the property.</param>
            <returns><B>True</B> if available, <B>false</B> otherwise.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection.Contains(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey)">
            <summary>
            Checks if a property with the given property key is available.
            </summary>
            <param name="key">The property key.</param>
            <returns><B>True</B> if available, <B>false</B> otherwise.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection.Dispose(System.Boolean)">
            <summary>
            Release the native and managed objects
            </summary>
            <param name="disposing">Indicates that this is being called from Dispose(), rather than the finalizer.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection.Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection.Finalize">
            <summary>
            Implement the finalizer.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection.Item(System.String)">
            <summary>
            Gets the property associated with the supplied canonical name string.
            The canonical name property is case-sensitive.
            
            </summary>
            <param name="canonicalName">The canonical name.</param>
            <returns>The property associated with the canonical name, if found.</returns>
            <exception cref="T:System.IndexOutOfRangeException">Throws IndexOutOfRangeException 
            if no matching property is found.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyCollection.Item(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey)">
            <summary>
            Gets a property associated with the supplied property key.
            
            </summary>
            <param name="key">The property key.</param>
            <returns>The property associated with the property key, if found.</returns>
            <exception cref="T:System.IndexOutOfRangeException">Throws IndexOutOfRangeException 
            if no matching property is found.</exception>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog">
            <summary>
            Creates a Vista or Windows 7 Common File Dialog, allowing the user to select one or more files.
            </summary>
            
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog">
            <summary>
            Defines the abstract base class for the common file dialogs.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.IllegalPropertyChangeString">
            <summary>
            Contains a common error message string shared by classes that 
            inherit from this class.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.fileNames">
            <summary>
            The collection of names selected by the user.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified title.
            </summary>
            <param name="title">The title to display in the dialog.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.SyncFileTypeComboToDefaultExtension(Microsoft.WindowsAPICodePack.Dialogs.IFileDialog)">
            <summary>
            Tries to set the File(s) Type Combo to match the value in 
            'DefaultExtension'.  Only doing this if 'this' is a Save dialog 
            as it makes no sense to do this if only Opening a file.
            </summary>
            
            <param name="dialog">The native/IFileDialog instance.</param>
            
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.AddPlace(Microsoft.WindowsAPICodePack.Shell.ShellContainer,Microsoft.WindowsAPICodePack.Shell.FileDialogAddPlaceLocation)">
            <summary>
            Adds a location, such as a folder, library, search connector, or known folder, to the list of
            places available for a user to open or save items. This method actually adds an item
            to the <b>Favorite Links</b> or <b>Places</b> section of the Open/Save dialog.
            </summary>
            <param name="place">The item to add to the places list.</param>
            <param name="location">One of the enumeration values that indicates placement of the item in the list.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.AddPlace(System.String,Microsoft.WindowsAPICodePack.Shell.FileDialogAddPlaceLocation)">
            <summary>
            Adds a location (folder, library, search connector, known folder) to the list of
            places available for the user to open or save items. This method actually adds an item
            to the <b>Favorite Links</b> or <b>Places</b> section of the Open/Save dialog. Overload method
            takes in a string for the path.
            </summary>
            <param name="path">The item to add to the places list.</param>
            <param name="location">One of the enumeration values that indicates placement of the item in the list.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.ShowDialog(System.IntPtr)">
            <summary>
            Displays the dialog.
            </summary>
            <param name="ownerWindowHandle">Window handle of any top-level window that will own the modal dialog box.</param>
            <returns>A <see cref="T:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogResult"/> object.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.ShowDialog(System.Windows.Window)">
            <summary>
            Displays the dialog.
            </summary>
            <param name="window">Top-level WPF window that will own the modal dialog box.</param>
            <returns>A <see cref="T:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogResult"/> object.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.ShowDialog">
            <summary>
            Displays the dialog.
            </summary>
            <returns>A <see cref="T:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogResult"/> object.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.ResetUserSelections">
            <summary>
            Removes the current selection.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.CheckFileNamesAvailable">
            <summary>
            Ensures that the user has selected one or more files.
            </summary>
            <permission cref="T:System.InvalidOperationException">
            The dialog has not been dismissed yet or the dialog was cancelled.
            </permission>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.CheckFileItemsAvailable">
            <summary>
            Ensures that the user has selected one or more files.
            </summary>
            <permission cref="T:System.InvalidOperationException">
            The dialog has not been dismissed yet or the dialog was cancelled.
            </permission>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.ThrowIfDialogShowing(System.String)">
            <summary>
            Throws an exception when the dialog is showing preventing
            a requested change to a property or the visible set of controls.
            </summary>
            <param name="message">The message to include in the exception.</param>
            <permission cref="T:System.InvalidOperationException"> The dialog is in an
            invalid state to perform the requested operation.</permission>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.GetCustomizedFileDialog">
            <summary>
            Get the IFileDialogCustomize interface, preparing to add controls.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.OnFileOk(System.ComponentModel.CancelEventArgs)">
            <summary>
            Raises the <see cref="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FileOk"/> event just before the dialog is about to return with a result.
            </summary>
            <param name="e">The event data.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.OnFolderChanging(Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFolderChangeEventArgs)">
            <summary>
            Raises the <see cref="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FolderChanging"/> to stop navigation to a particular location.
            </summary>
            <param name="e">Cancelable event arguments.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.OnFolderChanged(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FolderChanged"/> event when the user navigates to a new folder.
            </summary>
            <param name="e">The event data.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.OnSelectionChanged(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.SelectionChanged"/> event when the user changes the selection in the dialog's view.
            </summary>
            <param name="e">The event data.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.OnFileTypeChanged(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FileTypeChanged"/> event when the dialog is opened to notify the 
            application of the initial chosen filetype.
            </summary>
            <param name="e">The event data.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.OnOpening(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.DialogOpening"/> event when the dialog is opened.
            </summary>
            <param name="e">The event data.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.Dispose(System.Boolean)">
            <summary>
            Releases the unmanaged resources used by the CommonFileDialog class and optionally 
            releases the managed resources.
            </summary>
            <param name="disposing"><b>true</b> to release both managed and unmanaged resources; 
            <b>false</b> to release only unmanaged resources.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.Dispose">
            <summary>
            Releases the resources used by the current instance of the CommonFileDialog class.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FileOk">
            <summary>
            Raised just before the dialog is about to return with a result. Occurs when the user clicks on the Open 
            or Save button on a file dialog box. 
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FolderChanging">
            <summary>
            Raised just before the user navigates to a new folder.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FolderChanged">
            <summary>
            Raised when the user navigates to a new folder.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.SelectionChanged">
            <summary>
            Raised when the user changes the selection in the dialog's view.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FileTypeChanged">
            <summary>
            Raised when the dialog is opened to notify the application of the initial chosen filetype.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.DialogOpening">
            <summary>
            Raised when the dialog is opening.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.Controls">
            <summary>
            Gets the collection of controls for the dialog.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.Filters">
            <summary>
            Gets the filters used by the dialog.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.Title">
            <summary>
            Gets or sets the dialog title.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.EnsureFileExists">
            <summary>
            Gets or sets a value that determines whether the file must exist beforehand.
            </summary>
            <value>A <see cref="T:System.Boolean"/> value. <b>true</b> if the file must exist.</value>
            <exception cref="T:System.InvalidOperationException">This property cannot be set when the dialog is visible.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.EnsurePathExists">
            <summary>
            Gets or sets a value that specifies whether the returned file must be in an existing folder.
            </summary>
            <value>A <see cref="T:System.Boolean"/> value. <b>true</b> if the file must exist.</value>
            <exception cref="T:System.InvalidOperationException">This property cannot be set when the dialog is visible.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.EnsureValidNames">
             <summary>Gets or sets a value that determines whether to validate file names.
             </summary>
            <value>A <see cref="T:System.Boolean"/> value. <b>true </b>to check for situations that would prevent an application from opening the selected file, such as sharing violations or access denied errors.</value>
             <exception cref="T:System.InvalidOperationException">This property cannot be set when the dialog is visible.</exception>
             
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.EnsureReadOnly">
            <summary>
            Gets or sets a value that determines whether read-only items are returned.
            Default value for CommonOpenFileDialog is true (allow read-only files) and 
            CommonSaveFileDialog is false (don't allow read-only files).
            </summary>
            <value>A <see cref="T:System.Boolean"/> value. <b>true</b> includes read-only items.</value>
            <exception cref="T:System.InvalidOperationException">This property cannot be set when the dialog is visible.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.RestoreDirectory">
            <summary>
            Gets or sets a value that determines the restore directory.
            </summary>
            <remarks></remarks>
            <exception cref="T:System.InvalidOperationException">This property cannot be set when the dialog is visible.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.ShowPlacesList">
            <summary>
            Gets or sets a value that controls whether 
            to show or hide the list of pinned places that
            the user can choose.
            </summary>
            <value>A <see cref="T:System.Boolean"/> value. <b>true</b> if the list is visible; otherwise <b>false</b>.</value>
            <exception cref="T:System.InvalidOperationException">This property cannot be set when the dialog is visible.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.AddToMostRecentlyUsedList">
            <summary>
            Gets or sets a value that controls whether to show or hide the list of places where the user has recently opened or saved items.
            </summary>
            <value>A <see cref="T:System.Boolean"/> value.</value>
            <exception cref="T:System.InvalidOperationException">This property cannot be set when the dialog is visible.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.ShowHiddenItems">
            <summary>
             Gets or sets a value that controls whether to show hidden items.
             </summary>
             <value>A <see cref="T:System.Boolean"/> value.<b>true</b> to show the items; otherwise <b>false</b>.</value>
             <exception cref="T:System.InvalidOperationException">This property cannot be set when the dialog is visible.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.AllowPropertyEditing">
            <summary>
            Gets or sets a value that controls whether 
            properties can be edited.
            </summary>
            <value>A <see cref="T:System.Boolean"/> value. </value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.NavigateToShortcut">
            <summary>
             Gets or sets a value that controls whether shortcuts should be treated as their target items, allowing an application to open a .lnk file.
             </summary>
             <value>A <see cref="T:System.Boolean"/> value. <b>true</b> indicates that shortcuts should be treated as their targets. </value>
             <exception cref="T:System.InvalidOperationException">This property cannot be set when the dialog is visible.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.DefaultExtension">
            <summary>
            Gets or sets the default file extension to be added to file names. If the value is null
            or String.Empty, the extension is not added to the file names.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.SelectedFileTypeIndex">
            <summary>
            Gets the index for the currently selected file type.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FileName">
            <summary>
            Gets the selected filename.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
            <exception cref="T:System.InvalidOperationException">This property cannot be used when multiple files are selected.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FileAsShellObject">
            <summary>
            Gets the selected item as a ShellObject.
            </summary>
            <value>A <see cref="T:Microsoft.WindowsAPICodePack.Shell.ShellObject"></see> object.</value>
            <exception cref="T:System.InvalidOperationException">This property cannot be used when multiple files
            are selected.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.InitialDirectory">
            <summary>
            Gets or sets the initial directory displayed when the dialog is shown. 
            A null or empty string indicates that the dialog is using the default directory.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.InitialDirectoryShellContainer">
            <summary>
            Gets or sets a location that is always selected when the dialog is opened, 
            regardless of previous user action. A null value implies that the dialog is using 
            the default location.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.DefaultDirectory">
            <summary>
            Sets the folder and path used as a default if there is not a recently used folder value available.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.DefaultDirectoryShellContainer">
            <summary>
            Sets the location (<see cref="T:Microsoft.WindowsAPICodePack.Shell.ShellContainer">ShellContainer</see> 
            used as a default if there is not a recently used folder value available.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.CookieIdentifier">
            <summary>
            Gets or sets a value that enables a calling application 
            to associate a GUID with a dialog's persisted state.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.DefaultFileName">
            <summary>
            Default file name.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.IsPlatformSupported">
            <summary>
            Indicates whether this feature is supported on the current platform.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified name.
            </summary>
            <param name="name">The name of this dialog.</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog.FileNames">
            <summary>
            Gets a collection of the selected file names.
            </summary>
            <remarks>This property should only be used when the
            <see cref="P:Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog.Multiselect"/>
            property is <b>true</b>.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog.FilesAsShellObject">
            <summary>
            Gets a collection of the selected items as ShellObject objects.
            </summary>
            <remarks>This property should only be used when the
            <see cref="P:Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog.Multiselect"/>
            property is <b>true</b>.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog.Multiselect">
            <summary>
            Gets or sets a value that determines whether the user can select more than one file.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog.IsFolderPicker">
            <summary>
            Gets or sets a value that determines whether the user can select folders or files.
            Default value is false.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog.AllowNonFileSystemItems">
            <summary>
            Gets or sets a value that determines whether the user can select non-filesystem items, 
            such as <b>Library</b>, <b>Search Connectors</b>, or <b>Known Folders</b>.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogLabel">
            <summary>
            Defines the label controls in the Common File Dialog.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogLabel.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogLabel.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified text.
            </summary>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogLabel.#ctor(System.String,System.String)">
            <summary>
            Creates a new instance of this class with the specified name and text.
            </summary>
            <param name="name">The name of this control.</param>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogLabel.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach this control to the dialog object
            </summary>
            <param name="dialog">Target dialog</param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.KnownFoldersSafeNativeMethods">
            <summary>
            Internal class that contains interop declarations for 
            functions that are considered benign but that
            are performance critical. 
            </summary>
            <remarks>
            Functions that are benign but not performance critical 
            should be located in the NativeMethods class.
            </remarks>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.FileDialogAddPlaceLocation">
            <summary>
            CommonFileDialog AddPlace locations
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FileDialogAddPlaceLocation.Bottom">
            <summary>
            At the bottom of the Favorites or Places list.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FileDialogAddPlaceLocation.Top">
            <summary>
            At the top of the Favorites or Places list.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.DisplayNameType">
            <summary>
            One of the values that indicates how the ShellObject DisplayName should look.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DisplayNameType.Default">
            <summary>
            Returns the display name relative to the desktop.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DisplayNameType.RelativeToParent">
            <summary>
            Returns the parsing name relative to the parent folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DisplayNameType.RelativeToParentAddressBar">
            <summary>
            Returns the path relative to the parent folder in a 
            friendly format as displayed in an address bar.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DisplayNameType.RelativeToDesktop">
            <summary>
            Returns the parsing name relative to the desktop.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DisplayNameType.RelativeToParentEditing">
            <summary>
            Returns the editing name relative to the parent folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DisplayNameType.RelativeToDesktopEditing">
            <summary>
            Returns the editing name relative to the desktop.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DisplayNameType.FileSystemPath">
            <summary>
            Returns the display name relative to the file system path.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DisplayNameType.Url">
            <summary>
            Returns the display name relative to a URL.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.LibraryFolderType">
            <summary>
            Available Library folder types
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.LibraryFolderType.Generic">
            <summary>
            General Items
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.LibraryFolderType.Documents">
            <summary>
            Documents
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.LibraryFolderType.Music">
            <summary>
            Music
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.LibraryFolderType.Pictures">
            <summary>
            Pictures
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.LibraryFolderType.Videos">
            <summary>
            Videos
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand">
            <summary>
            Flags controlling the appearance of a window
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.Hide">
            <summary>
            Hides the window and activates another window.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.Normal">
            <summary>
            Activates and displays the window (including restoring
            it to its original size and position).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.Minimized">
            <summary>
            Minimizes the window.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.Maximized">
            <summary>
            Maximizes the window.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.ShowNoActivate">
            <summary>
            Similar to <see cref="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.Normal"/>, except that the window
            is not activated.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.Show">
            <summary>
            Activates the window and displays it in its current size
            and position.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.Minimize">
            <summary>
            Minimizes the window and activates the next top-level window.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.ShowMinimizedNoActivate">
            <summary>
            Minimizes the window and does not activate it.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.ShowNA">
            <summary>
            Similar to <see cref="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.Normal"/>, except that the window is not
            activated.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.Restore">
            <summary>
            Activates and displays the window, restoring it to its original
            size and position.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.Default">
            <summary>
            Sets the show state based on the initial value specified when
            the process was created.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.WindowShowCommand.ForceMinimize">
            <summary>
            Minimizes a window, even if the thread owning the window is not
            responding.  Use this only to minimize windows from a different
            thread.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation">
            <summary>
            Provides a set of flags to be used with <see cref="T:Microsoft.WindowsAPICodePack.Shell.SearchCondition"/> 
            to indicate the operation in <see cref="T:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory"/> methods.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.Implicit">
            <summary>
            An implicit comparison between the value of the property and the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.Equal">
            <summary>
            The value of the property and the value of the constant must be equal.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.NotEqual">
            <summary>
            The value of the property and the value of the constant must not be equal.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.LessThan">
            <summary>
            The value of the property must be less than the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.GreaterThan">
            <summary>
            The value of the property must be greater than the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.LessThanOrEqual">
            <summary>
            The value of the property must be less than or equal to the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.GreaterThanOrEqual">
            <summary>
            The value of the property must be greater than or equal to the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.ValueStartsWith">
            <summary>
            The value of the property must begin with the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.ValueEndsWith">
            <summary>
            The value of the property must end with the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.ValueContains">
            <summary>
            The value of the property must contain the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.ValueNotContains">
            <summary>
            The value of the property must not contain the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.DOSWildcards">
            <summary>
            The value of the property must match the value of the constant, where '?' 
            matches any single character and '*' matches any sequence of characters.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.WordEqual">
            <summary>
            The value of the property must contain a word that is the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.WordStartsWith">
            <summary>
            The value of the property must contain a word that begins with the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation.ApplicationSpecific">
            <summary>
            The application is free to interpret this in any suitable way.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.SearchConditionType">
            <summary>
            Set of flags to be used with <see cref="T:Microsoft.WindowsAPICodePack.Shell.SearchConditionFactory"/>.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionType.And">
            <summary>
            Indicates that the values of the subterms are combined by "AND".
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionType.Or">
            <summary>
            Indicates that the values of the subterms are combined by "OR".
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionType.Not">
            <summary>
            Indicates a "NOT" comparison of subterms.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SearchConditionType.Leaf">
            <summary>
            Indicates that the node is a comparison between a property and a 
            constant value using a <see cref="T:Microsoft.WindowsAPICodePack.Shell.SearchConditionOperation"/>.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.FolderLogicalViewMode">
            <summary>
            Used to describe the view mode.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderLogicalViewMode.Unspecified">
            <summary>
            The view is not specified.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderLogicalViewMode.First">
            <summary>
            The minimum valid enumeration value. Used for validation purposes only.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderLogicalViewMode.Details">
            <summary>
            Details view.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderLogicalViewMode.Tiles">
            <summary>
            Tiles view.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderLogicalViewMode.Icons">
            <summary>
            Icons view.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderLogicalViewMode.List">
            <summary>
            Windows 7 and later. List view.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderLogicalViewMode.Content">
            <summary>
            Windows 7 and later. Content view.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderLogicalViewMode.Last">
            <summary>
            The maximum valid enumeration value. Used for validation purposes only.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.SortDirection">
            <summary>
            The direction in which the items are sorted.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SortDirection.Descending">
            <summary>
            The items are sorted in descending order. Whether the sort is alphabetical, numerical, 
            and so on, is determined by the data type of the column indicated in propkey.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.SortDirection.Ascending">
            <summary>
            The items are sorted in ascending order. Whether the sort is alphabetical, numerical, 
            and so on, is determined by the data type of the column indicated in propkey.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption">
            <summary>
            Provides a set of flags to be used with IQueryParser::SetOption and 
            IQueryParser::GetOption to indicate individual options.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.Schema">
            <summary>
            The value should be VT_LPWSTR and the path to a file containing a schema binary.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.Locale">
            <summary>
            The value must be VT_EMPTY (the default) or a VT_UI4 that is an LCID. It is used
            as the locale of contents (not keywords) in the query to be searched for, when no
            other information is available. The default value is the current keyboard locale.
            Retrieving the value always returns a VT_UI4.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.WordBreaker">
            <summary>
            This option is used to override the default word breaker used when identifying keywords
            in queries. The default word breaker is chosen according to the language of the keywords
            (cf. SQSO_LANGUAGE_KEYWORDS below). When setting this option, the value should be VT_EMPTY
            for using the default word breaker, or a VT_UNKNOWN with an object supporting
            the IWordBreaker interface. Retrieving the option always returns a VT_UNKNOWN with an object
            supporting the IWordBreaker interface.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.NaturalSyntax">
            <summary>
            The value should be VT_EMPTY or VT_BOOL with VARIANT_TRUE to allow natural query
            syntax (the default) or VT_BOOL with VARIANT_FALSE to allow only advanced query syntax.
            Retrieving the option always returns a VT_BOOL.
            This option is now deprecated, use SQSO_SYNTAX.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.AutomaticWildcard">
            <summary>
            The value should be VT_BOOL with VARIANT_TRUE to generate query expressions
            as if each word in the query had a star appended to it (unless followed by punctuation
            other than a parenthesis), or VT_EMPTY or VT_BOOL with VARIANT_FALSE to
            use the words as they are (the default). A word-wheeling application
            will generally want to set this option to true.
            Retrieving the option always returns a VT_BOOL.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.TraceLevel">
            <summary>
            Reserved. The value should be VT_EMPTY (the default) or VT_I4.
            Retrieving the option always returns a VT_I4.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.LanguageKeywords">
            <summary>
            The value must be a VT_UI4 that is a LANGID. It defaults to the default user UI language.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.Syntax">
            <summary>
            The value must be a VT_UI4 that is a STRUCTURED_QUERY_SYNTAX value.
            It defaults to SQS_NATURAL_QUERY_SYNTAX.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.TimeZone">
            <summary>
            The value must be a VT_BLOB that is a copy of a TIME_ZONE_INFORMATION structure.
            It defaults to the current time zone.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.ImplicitConnector">
            <summary>
            This setting decides what connector should be assumed between conditions when none is specified.
            The value must be a VT_UI4 that is a CONDITION_TYPE. Only CT_AND_CONDITION and CT_OR_CONDITION
            are valid. It defaults to CT_AND_CONDITION.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQuerySingleOption.ConnectorCase">
            <summary>
            This setting decides whether there are special requirements on the case of connector keywords (such
            as AND or OR). The value must be a VT_UI4 that is a CASE_REQUIREMENT value.
            It defaults to CASE_REQUIREMENT_UPPER_IF_AQS.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.StructuredQueryMultipleOption">
            <summary>
            Provides a set of flags to be used with IQueryParser::SetMultiOption 
            to indicate individual options.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQueryMultipleOption.VirtualProperty">
            <summary>
            The key should be property name P. The value should be a
            VT_UNKNOWN with an IEnumVARIANT which has two values: a VT_BSTR that is another
            property name Q and a VT_I4 that is a CONDITION_OPERATION cop. A predicate with
            property name P, some operation and a value V will then be replaced by a predicate
            with property name Q, operation cop and value V before further processing happens.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQueryMultipleOption.DefaultProperty">
            <summary>
            The key should be a value type name V. The value should be a
            VT_LPWSTR with a property name P. A predicate with no property name and a value of type
            V (or any subtype of V) will then use property P.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQueryMultipleOption.GeneratorForType">
            <summary>
            The key should be a value type name V. The value should be a
            VT_UNKNOWN with a IConditionGenerator G. The GenerateForLeaf method of
            G will then be applied to any predicate with value type V and if it returns a query
            expression, that will be used. If it returns NULL, normal processing will be used
            instead.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StructuredQueryMultipleOption.MapProperty">
            <summary>
            The key should be a property name P. The value should be a VT_VECTOR|VT_LPWSTR,
            where each string is a property name. The count must be at least one. This "map" will be
            added to those of the loaded schema and used during resolution. A second call with the
            same key will replace the current map. If the value is VT_NULL, the map will be removed.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.QueryParserManagerOption">
            <summary>
            Used by IQueryParserManager::SetOption to set parsing options. 
            This can be used to specify schemas and localization options.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.QueryParserManagerOption.SchemaBiaryName">
            <summary>
            A VT_LPWSTR containing the name of the file that contains the schema binary. 
            The default value is StructuredQuerySchema.bin for the SystemIndex catalog 
            and StructuredQuerySchemaTrivial.bin for the trivial catalog.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.QueryParserManagerOption.PreLocalizedSchemaBinaryPath">
            <summary>
            Either a VT_BOOL or a VT_LPWSTR. If the value is a VT_BOOL and is FALSE, 
            a pre-localized schema will not be used. If the value is a VT_BOOL and is TRUE, 
            IQueryParserManager will use the pre-localized schema binary in 
            "%ALLUSERSPROFILE%\Microsoft\Windows". If the value is a VT_LPWSTR, the value should 
            contain the full path of the folder in which the pre-localized schema binary can be found. 
            The default value is VT_BOOL with TRUE.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.QueryParserManagerOption.UnLocalizedSchemaBinaryPath">
            <summary>
            A VT_LPWSTR containing the full path to the folder that contains the 
            unlocalized schema binary. The default value is "%SYSTEMROOT%\System32".
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.QueryParserManagerOption.LocalizedSchemaBinaryPath">
            <summary>
            A VT_LPWSTR containing the full path to the folder that contains the 
            localized schema binary that can be read and written to as needed. 
            The default value is "%LOCALAPPDATA%\Microsoft\Windows".
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.QueryParserManagerOption.AppendLCIDToLocalizedPath">
            <summary>
            A VT_BOOL. If TRUE, then the paths for pre-localized and localized binaries 
            have "\(LCID)" appended to them, where language code identifier (LCID) is 
            the decimal locale ID for the localized language. The default is TRUE.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.QueryParserManagerOption.LocalizerSupport">
            <summary>
            A VT_UNKNOWN with an object supporting ISchemaLocalizerSupport. 
            This object will be used instead of the default localizer support object.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.DefaultIconSize">
            <summary>
            Defines the read-only properties for default shell icon sizes.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefaultIconSize.Small">
            <summary>
            The small size property for a 16x16 pixel Shell Icon.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefaultIconSize.Medium">
            <summary>
            The medium size property for a 32x32 pixel Shell Icon.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefaultIconSize.Large">
            <summary>
            The large size property for a 48x48 pixel Shell Icon.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefaultIconSize.ExtraLarge">
            <summary>
            The extra-large size property for a 256x256 pixel Shell Icon.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefaultIconSize.Maximum">
            <summary>
            The maximum size for a Shell Icon, 256x256 pixels.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.DefaultThumbnailSize">
            <summary>
            Defines the read-only properties for default shell thumbnail sizes.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefaultThumbnailSize.Small">
            <summary>
            Gets the small size property for a 32x32 pixel Shell Thumbnail.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefaultThumbnailSize.Medium">
            <summary>
            Gets the medium size property for a 96x96 pixel Shell Thumbnail.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefaultThumbnailSize.Large">
            <summary>
            Gets the large size property for a 256x256 pixel Shell Thumbnail.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefaultThumbnailSize.ExtraLarge">
            <summary>
            Gets the extra-large size property for a 1024x1024 pixel Shell Thumbnail.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefaultThumbnailSize.Maximum">
            <summary>
            Maximum size for the Shell Thumbnail, 1024x1024 pixels.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarManager">
            <summary>
            Thumbnail toolbar manager class for adding a thumbnail toolbar with a specified set of buttons 
            to the thumbnail image of a window in a taskbar button flyout.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarManager.AddButtons(System.IntPtr,Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton[])">
            <summary>
            Adds thumbnail toolbar for the specified window.
            </summary>
            <param name="windowHandle">Window handle for which the thumbnail toolbar buttons need to be added</param>
            <param name="buttons">Thumbnail buttons for the window's thumbnail toolbar</param>
            <exception cref="T:System.ArgumentException">If the number of buttons exceed the maximum allowed capacity (7).</exception>
            <exception cref="T:System.ArgumentException">If the Window Handle passed in invalid</exception>
            <remarks>After a toolbar has been added to a thumbnail, buttons can be altered only through various 
            properties on the <see cref="T:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton"/>. While individual buttons cannot be added or removed, 
            they can be shown and hidden through <see cref="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Visible"/> as needed. 
            The toolbar itself cannot be removed without re-creating the window itself.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarManager.AddButtons(System.Windows.UIElement,Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton[])">
            <summary>
            Adds thumbnail toolbar for the specified WPF Control.
            </summary>
            <param name="control">WPF Control for which the thumbnail toolbar buttons need to be added</param>
            <param name="buttons">Thumbnail buttons for the window's thumbnail toolbar</param>
            <exception cref="T:System.ArgumentException">If the number of buttons exceed the maximum allowed capacity (7).</exception>
            <exception cref="T:System.ArgumentNullException">If the control passed in null</exception>
            <remarks>After a toolbar has been added to a thumbnail, buttons can be altered only through various 
            properties on the ThumbnailToolbarButton. While individual buttons cannot be added or removed, 
            they can be shown and hidden through ThumbnailToolbarButton.Visible as needed. 
            The toolbar itself cannot be removed without re-creating the window itself.
            </remarks>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager">
            <summary>
            Represents the main class for adding and removing tabbed thumbnails on the Taskbar
            for child windows and controls.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.tabbedThumbnailList">
            <summary>
            Internal dictionary to keep track of the user's window handle and its 
            corresponding thumbnail preview objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.#ctor">
            <summary>
            Internal constructor that creates a new dictionary for keeping track of the window handles
            and their corresponding thumbnail preview objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.AddThumbnailPreview(Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail)">
            <summary>
            Adds a new tabbed thumbnail to the taskbar.
            </summary>
            <param name="preview">Thumbnail preview for a specific window handle or control. The preview
            object can be initialized with specific properties for the title, bitmap, and tooltip.</param>
            <exception cref="T:System.ArgumentException">If the tabbed thumbnail has already been added</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.GetThumbnailPreview(System.IntPtr)">
            <summary>
            Gets the TabbedThumbnail object associated with the given window handle
            </summary>
            <param name="windowHandle">Window handle for the control/window</param>
            <returns>TabbedThumbnail associated with the given window handle</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.GetThumbnailPreview(System.Windows.Forms.Control)">
            <summary>
            Gets the TabbedThumbnail object associated with the given control
            </summary>
            <param name="control">Specific control for which the preview object is requested</param>
            <returns>TabbedThumbnail associated with the given control</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.GetThumbnailPreview(System.Windows.UIElement)">
            <summary>
            Gets the TabbedThumbnail object associated with the given WPF Window
            </summary>
            <param name="windowsControl">WPF Control (UIElement) for which the preview object is requested</param>
            <returns>TabbedThumbnail associated with the given WPF Window</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.RemoveThumbnailPreview(Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail)">
            <summary>
            Remove the tabbed thumbnail from the taskbar.
            </summary>
            <param name="preview">TabbedThumbnail associated with the control/window that 
            is to be removed from the taskbar</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.RemoveThumbnailPreview(System.IntPtr)">
            <summary>
            Remove the tabbed thumbnail from the taskbar.
            </summary>
            <param name="windowHandle">TabbedThumbnail associated with the window handle that 
            is to be removed from the taskbar</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.RemoveThumbnailPreview(System.Windows.Forms.Control)">
            <summary>
            Remove the tabbed thumbnail from the taskbar.
            </summary>
            <param name="control">TabbedThumbnail associated with the control that 
            is to be removed from the taskbar</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.RemoveThumbnailPreview(System.Windows.UIElement)">
            <summary>
            Remove the tabbed thumbnail from the taskbar.
            </summary>
            <param name="windowsControl">TabbedThumbnail associated with the WPF Control (UIElement) that 
            is to be removed from the taskbar</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.SetActiveTab(Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail)">
            <summary>
            Sets the given tabbed thumbnail preview object as being active on the taskbar tabbed thumbnails list.
            Call this method to keep the application and the taskbar in sync as to which window/control
            is currently active (or selected, in the case of tabbed application).
            </summary>
            <param name="preview">TabbedThumbnail for the specific control/indow that is currently active in the application</param>
            <exception cref="T:System.ArgumentException">If the control/window is not yet added to the tabbed thumbnails list</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.SetActiveTab(System.IntPtr)">
            <summary>
            Sets the given window handle as being active on the taskbar tabbed thumbnails list.
            Call this method to keep the application and the taskbar in sync as to which window/control
            is currently active (or selected, in the case of tabbed application).
            </summary>
            <param name="windowHandle">Window handle for the control/window that is currently active in the application</param>
            <exception cref="T:System.ArgumentException">If the control/window is not yet added to the tabbed thumbnails list</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.SetActiveTab(System.Windows.Forms.Control)">
            <summary>
            Sets the given Control/Form window as being active on the taskbar tabbed thumbnails list.
            Call this method to keep the application and the taskbar in sync as to which window/control
            is currently active (or selected, in the case of tabbed application).
            </summary>
            <param name="control">Control/Form that is currently active in the application</param>
            <exception cref="T:System.ArgumentException">If the control/window is not yet added to the tabbed thumbnails list</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.SetActiveTab(System.Windows.UIElement)">
            <summary>
            Sets the given WPF window as being active on the taskbar tabbed thumbnails list.
            Call this method to keep the application and the taskbar in sync as to which window/control
            is currently active (or selected, in the case of tabbed application).
            </summary>
            <param name="windowsControl">WPF control that is currently active in the application</param>
            <exception cref="T:System.ArgumentException">If the control/window is not yet added to the tabbed thumbnails list</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.IsThumbnailPreviewAdded(Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail)">
            <summary>
            Determines whether the given preview has been added to the taskbar's tabbed thumbnail list.
            </summary>
            <param name="preview">The preview to locate on the taskbar's tabbed thumbnail list</param>
            <returns>true if the tab is already added on the taskbar; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.IsThumbnailPreviewAdded(System.IntPtr)">
            <summary>
            Determines whether the given window has been added to the taskbar's tabbed thumbnail list.
            </summary>
            <param name="windowHandle">The window to locate on the taskbar's tabbed thumbnail list</param>
            <returns>true if the tab is already added on the taskbar; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.IsThumbnailPreviewAdded(System.Windows.Forms.Control)">
            <summary>
            Determines whether the given control has been added to the taskbar's tabbed thumbnail list.
            </summary>
            <param name="control">The preview to locate on the taskbar's tabbed thumbnail list</param>
            <returns>true if the tab is already added on the taskbar; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.IsThumbnailPreviewAdded(System.Windows.UIElement)">
            <summary>
            Determines whether the given control has been added to the taskbar's tabbed thumbnail list.
            </summary>
            <param name="control">The preview to locate on the taskbar's tabbed thumbnail list</param>
            <returns>true if the tab is already added on the taskbar; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.InvalidateThumbnails">
            <summary>
            Invalidates all the tabbed thumbnails. This will force the Desktop Window Manager
            to not use the cached thumbnail or preview or aero peek and request a new one next time.
            </summary>
            <remarks>This method should not be called frequently. 
            Doing so can lead to poor performance as new bitmaps are created and retrieved.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.ClearThumbnailClip(System.IntPtr)">
            <summary>
            Clear a clip that is already in place and return to the default display of the thumbnail.
            </summary>
            <param name="windowHandle">The handle to a window represented in the taskbar. This has to be a top-level window.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.SetThumbnailClip(System.IntPtr,System.Nullable{System.Drawing.Rectangle})">
            <summary>
            Selects a portion of a window's client area to display as that window's thumbnail in the taskbar.
            </summary>
            <param name="windowHandle">The handle to a window represented in the taskbar. This has to be a top-level window.</param>
            <param name="clippingRectangle">Rectangle structure that specifies a selection within the window's client area,
            relative to the upper-left corner of that client area.
            <para>If this parameter is null, the clipping area will be cleared and the default display of the thumbnail will be used instead.</para></param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailManager.SetTabOrder(Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail,Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail)">
            <summary>
            Moves an existing thumbnail to a new position in the application's group.
            </summary>
            <param name="previewToChange">Preview for the window whose order is being changed. 
            This value is required, must already be added via AddThumbnailPreview method, and cannot be null.</param>
            <param name="insertBeforePreview">The preview of the tab window whose thumbnail that previewToChange is inserted to the left of. 
            This preview must already be added via AddThumbnailPreview. If this value is null, the previewToChange tab is added to the end of the list.
            </param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection">
            <summary>
            Represents a collection of custom categories
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection.Add(Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategory)">
            <summary>
            Add the specified category to this collection
            </summary>
            <param name="category">Category to add</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection.Remove(Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategory)">
            <summary>
            Remove the specified category from this collection
            </summary>
            <param name="category">Category item to remove</param>
            <returns>True if item was removed.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection.Clear">
            <summary>
            Clear all items from the collection
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection.Contains(Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategory)">
            <summary>
            Determine if this collection contains the specified item
            </summary>
            <param name="category">Category to search for</param>
            <returns>True if category was found</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection.CopyTo(Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategory[],System.Int32)">
            <summary>
            Copy this collection to a compatible one-dimensional array,
            starting at the specified index of the target array
            </summary>
            <param name="array">Array to copy to</param>
            <param name="index">Index of target array to start copy</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Returns an enumerator that iterates through this collection.
            </summary>
            <returns>Enumerator to iterate through this collection.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection.System#Collections#Generic#IEnumerable{Microsoft#WindowsAPICodePack#Taskbar#JumpListCustomCategory}#GetEnumerator">
            <summary>
            Returns an enumerator that iterates through this collection.
            </summary>
            <returns>Enumerator to iterate through this collection.</returns>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection.CollectionChanged">
            <summary>
            Event to trigger anytime this collection is modified
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection.IsReadOnly">
            <summary>
            Determines if this collection is read-only
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategoryCollection.Count">
            <summary>
            The number of items in this collection
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties">
            <summary>
            Provides easy access to all the system properties (property keys and their descriptions)
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.GetPropertyDescription(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey)">
            <summary>
            Returns the property description for a given property key.
            </summary>
            <param name="propertyKey">Property key of the property whose description is required.</param>
            <returns>Property Description for a given property key</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.GetPropertyDescription(System.String)">
            <summary>
            Gets the property description for a given property's canonical name.
            </summary>
            <param name="canonicalName">Canonical name of the property whose description is required.</param>
            <returns>Property Description for a given property key</returns>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System">
            <summary>
            System Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.AcquisitionID">
             <summary>
             <para>Name:     System.AcquisitionID -- PKEY_AcquisitionID</para>
             <para>Description: Hash to determine acquisition session.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {65A98875-3C80-40AB-ABBC-EFDAF77DBEE2}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ApplicationName">
             <summary>
             <para>Name:     System.ApplicationName -- PKEY_ApplicationName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 18 (PIDSI_APPNAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Author">
             <summary>
             <para>Name:     System.Author -- PKEY_Author</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 4 (PIDSI_AUTHOR)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Capacity">
             <summary>
             <para>Name:     System.Capacity -- PKEY_Capacity</para>
             <para>Description: The amount of total space in bytes.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 3 (PID_VOLUME_CAPACITY)  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Category">
             <summary>
             <para>Name:     System.Category -- PKEY_Category</para>
             <para>Description: Legacy code treats this as VT_LPSTR.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 2 (PIDDSI_CATEGORY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Comment">
             <summary>
             <para>Name:     System.Comment -- PKEY_Comment</para>
             <para>Description: Comments.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 6 (PIDSI_COMMENTS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Company">
             <summary>
             <para>Name:     System.Company -- PKEY_Company</para>
             <para>Description: The company or publisher.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 15 (PIDDSI_COMPANY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ComputerName">
             <summary>
             <para>Name:     System.ComputerName -- PKEY_ComputerName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 5 (PID_COMPUTERNAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ContainedItems">
             <summary>
             <para>Name:     System.ContainedItems -- PKEY_ContainedItems</para>
             <para>Description: The list of type of items, this item contains. For example, this item contains urls, attachments etc.
            This is represented as a vector array of GUIDs where each GUID represents certain type.
            </para>
             <para>Type:     Multivalue Guid -- VT_VECTOR | VT_CLSID  (For variants: VT_ARRAY | VT_CLSID)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 29</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ContentStatus">
            <summary>
            <para>Name:     System.ContentStatus -- PKEY_ContentStatus</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 27</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ContentType">
            <summary>
            <para>Name:     System.ContentType -- PKEY_ContentType</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 26</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Copyright">
             <summary>
             <para>Name:     System.Copyright -- PKEY_Copyright</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 11 (PIDMSI_COPYRIGHT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DateAccessed">
             <summary>
             <para>Name:     System.DateAccessed -- PKEY_DateAccessed</para>
             <para>Description: The time of the last access to the item.  The Indexing Service friendly name is 'access'.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 16 (PID_STG_ACCESSTIME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DateAcquired">
             <summary>
             <para>Name:     System.DateAcquired -- PKEY_DateAcquired</para>
             <para>Description: The time the file entered the system via acquisition.  This is not the same as System.DateImported.
            Examples are when pictures are acquired from a camera, or when music is purchased online.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {2CBAA8F5-D81F-47CA-B17A-F8D822300131}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DateArchived">
            <summary>
            <para>Name:     System.DateArchived -- PKEY_DateArchived</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {43F8D7B7-A444-4F87-9383-52271C9B915C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DateCompleted">
            <summary>
            <para>Name:     System.DateCompleted -- PKEY_DateCompleted</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {72FAB781-ACDA-43E5-B155-B2434F85E678}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DateCreated">
             <summary>
             <para>Name:     System.DateCreated -- PKEY_DateCreated</para>
             <para>Description: The date and time the item was created. The Indexing Service friendly name is 'create'.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 15 (PID_STG_CREATETIME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DateImported">
             <summary>
             <para>Name:     System.DateImported -- PKEY_DateImported</para>
             <para>Description: The time the file is imported into a separate database.  This is not the same as System.DateAcquired.  (Eg, 2003:05:22 13:55:04)
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 18258</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DateModified">
             <summary>
             <para>Name:     System.DateModified -- PKEY_DateModified</para>
             <para>Description: The date and time of the last write to the item. The Indexing Service friendly name is 'write'.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 14 (PID_STG_WRITETIME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DescriptionID">
             <summary>
             <para>Name:     System.DescriptionID -- PKEY_DescriptionID</para>
             <para>Description: The contents of a SHDESCRIPTIONID structure as a buffer of bytes.
            </para>
             <para>Type:     Buffer -- VT_VECTOR | VT_UI1  (For variants: VT_ARRAY | VT_UI1)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 2 (PID_DESCRIPTIONID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DueDate">
            <summary>
            <para>Name:     System.DueDate -- PKEY_DueDate</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {3F8472B5-E0AF-4DB2-8071-C53FE76AE7CE}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.EndDate">
            <summary>
            <para>Name:     System.EndDate -- PKEY_EndDate</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {C75FAA05-96FD-49E7-9CB4-9F601082D553}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FileAllocationSize">
             <summary>
             <para>Name:     System.FileAllocationSize -- PKEY_FileAllocationSize</para>
             <para>Description: 
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 18 (PID_STG_ALLOCSIZE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FileAttributes">
             <summary>
             <para>Name:     System.FileAttributes -- PKEY_FileAttributes</para>
             <para>Description: This is the WIN32_FIND_DATA dwFileAttributes for the file-based item.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 13 (PID_STG_ATTRIBUTES)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FileCount">
             <summary>
             <para>Name:     System.FileCount -- PKEY_FileCount</para>
             <para>Description: 
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 12</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FileDescription">
             <summary>
             <para>Name:     System.FileDescription -- PKEY_FileDescription</para>
             <para>Description: This is a user-friendly description of the file.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 3 (PIDVSI_FileDescription)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FileExtension">
             <summary>
             <para>Name:     System.FileExtension -- PKEY_FileExtension</para>
             <para>Description: This is the file extension of the file based item, including the leading period.  
            
            If System.FileName is VT_EMPTY, then this property should be too.  Otherwise, it should be derived
            appropriately by the data source from System.FileName.  If System.FileName does not have a file 
            extension, this value should be VT_EMPTY.
            
            To obtain the type of any item (including an item that is not a file), use System.ItemType.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                ".txt"
                "\\server\share\mydir\goodnews.doc"   ".doc"
                "\\server\share\numbers.xls"          ".xls"
                "\\server\share\folder"               VT_EMPTY
                "c:\foo\MyFolder"                     VT_EMPTY
                [desktop]                             VT_EMPTY
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E4F10A3C-49E6-405D-8288-A23BD4EEAA6C}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FileFRN">
             <summary>
             <para>Name:     System.FileFRN -- PKEY_FileFRN</para>
             <para>Description: This is the unique file ID, also known as the File Reference Number. For a given file, this is the same value
            as is found in the structure variable FILE_ID_BOTH_DIR_INFO.FileId, via GetFileInformationByHandleEx().
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 21 (PID_STG_FRN)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FileName">
             <summary>
             <para>Name:     System.FileName -- PKEY_FileName</para>
             <para>Description: This is the file name (including extension) of the file.
            
            It is possible that the item might not exist on a filesystem (ie, it may not be opened 
            using CreateFile).  Nonetheless, if the item is represented as a file from the logical sense 
            (and its name follows standard Win32 file-naming syntax), then the data source should emit this property.
            
            If an item is not a file, then the value for this property is VT_EMPTY.  See 
            System.ItemNameDisplay.
            
            This has the same value as System.ParsingName for items that are provided by the Shell's file folder.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "hello.txt"
                "\\server\share\mydir\goodnews.doc"   "goodnews.doc"
                "\\server\share\numbers.xls"          "numbers.xls"
                "c:\foo\MyFolder"                     "MyFolder"
                (email message)                       VT_EMPTY
                (song on portable device)             "song.wma"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {41CF5AE0-F75A-4806-BD87-59C7D9248EB9}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FileOwner">
             <summary>
             <para>Name:     System.FileOwner -- PKEY_FileOwner</para>
             <para>Description: This is the owner of the file, according to the file system.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Misc) {9B174B34-40FF-11D2-A27E-00C04FC30871}, 4 (PID_MISC_OWNER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FileVersion">
             <summary>
             <para>Name:     System.FileVersion -- PKEY_FileVersion</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 4 (PIDVSI_FileVersion)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FindData">
             <summary>
             <para>Name:     System.FindData -- PKEY_FindData</para>
             <para>Description: WIN32_FIND_DATAW in buffer of bytes.
            </para>
             <para>Type:     Buffer -- VT_VECTOR | VT_UI1  (For variants: VT_ARRAY | VT_UI1)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 0 (PID_FINDDATA)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FlagColor">
             <summary>
             <para>Name:     System.FlagColor -- PKEY_FlagColor</para>
             <para>Description: 
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {67DF94DE-0CA7-4D6F-B792-053A3E4F03CF}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FlagColorText">
             <summary>
             <para>Name:     System.FlagColorText -- PKEY_FlagColorText</para>
             <para>Description: This is the user-friendly form of System.FlagColor.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {45EAE747-8E2A-40AE-8CBF-CA52ABA6152A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FlagStatus">
             <summary>
             <para>Name:     System.FlagStatus -- PKEY_FlagStatus</para>
             <para>Description: Status of Flag.  Values: (0=none 1=white 2=Red).  cdoPR_FLAG_STATUS
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 12</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FlagStatusText">
             <summary>
             <para>Name:     System.FlagStatusText -- PKEY_FlagStatusText</para>
             <para>Description: This is the user-friendly form of System.FlagStatus.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {DC54FD2E-189D-4871-AA01-08C2F57A4ABC}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FreeSpace">
             <summary>
             <para>Name:     System.FreeSpace -- PKEY_FreeSpace</para>
             <para>Description: The amount of free space in bytes.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 2 (PID_VOLUME_FREE)  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.FullText">
             <summary>
             <para>Name:     System.FullText -- PKEY_FullText</para>
             <para>Description: This PKEY is used to specify search terms that should be applied as broadly as possible,
            across all valid properties for the data source(s) being searched.  It should not be
            emitted from a data source.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {1E3EE840-BC2B-476C-8237-2ACD1A839B22}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IdentityProperty">
            <summary>
            <para>Name:     System.Identity -- PKEY_Identity</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {A26F4AFC-7346-4299-BE47-EB1AE613139F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ImageParsingName">
            <summary>
            <para>Name:     System.ImageParsingName -- PKEY_ImageParsingName</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {D7750EE0-C6A4-48EC-B53E-B87B52E6D073}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Importance">
            <summary>
            <para>Name:     System.Importance -- PKEY_Importance</para>
            <para>Description: </para>
            <para>Type:     Int32 -- VT_I4</para>
            <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 11</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ImportanceText">
             <summary>
             <para>Name:     System.ImportanceText -- PKEY_ImportanceText</para>
             <para>Description: This is the user-friendly form of System.Importance.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A3B29791-7713-4E1D-BB40-17DB85F01831}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.InfoTipText">
             <summary>
             <para>Name:     System.InfoTipText -- PKEY_InfoTipText</para>
             <para>Description: The text (with formatted property values) to show in the infotip.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 17</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.InternalName">
             <summary>
             <para>Name:     System.InternalName -- PKEY_InternalName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 5 (PIDVSI_InternalName)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsAttachment">
             <summary>
             <para>Name:     System.IsAttachment -- PKEY_IsAttachment</para>
             <para>Description: Identifies if this item is an attachment.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {F23F425C-71A1-4FA8-922F-678EA4A60408}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsDefaultNonOwnerSaveLocation">
             <summary>
             <para>Name:     System.IsDefaultNonOwnerSaveLocation -- PKEY_IsDefaultNonOwnerSaveLocation</para>
             <para>Description: Identifies the default save location for a library for non-owners of the library
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsDefaultSaveLocation">
             <summary>
             <para>Name:     System.IsDefaultSaveLocation -- PKEY_IsDefaultSaveLocation</para>
             <para>Description: Identifies the default save location for a library for the owner of the library
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsDeleted">
            <summary>
            <para>Name:     System.IsDeleted -- PKEY_IsDeleted</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {5CDA5FC8-33EE-4FF3-9094-AE7BD8868C4D}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsEncrypted">
             <summary>
             <para>Name:     System.IsEncrypted -- PKEY_IsEncrypted</para>
             <para>Description: Is the item encrypted?
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {90E5E14E-648B-4826-B2AA-ACAF790E3513}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsFlagged">
            <summary>
            <para>Name:     System.IsFlagged -- PKEY_IsFlagged</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {5DA84765-E3FF-4278-86B0-A27967FBDD03}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsFlaggedComplete">
            <summary>
            <para>Name:     System.IsFlaggedComplete -- PKEY_IsFlaggedComplete</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {A6F360D2-55F9-48DE-B909-620E090A647C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsIncomplete">
             <summary>
             <para>Name:     System.IsIncomplete -- PKEY_IsIncomplete</para>
             <para>Description: Identifies if the message was not completely received for some error condition.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {346C8BD1-2E6A-4C45-89A4-61B78E8E700F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsLocationSupported">
             <summary>
             <para>Name:     System.IsLocationSupported -- PKEY_IsLocationSupported</para>
             <para>Description: A bool value to know if a location is supported (locally indexable, or remotely indexed).
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsPinnedToNameSpaceTree">
             <summary>
             <para>Name:     System.IsPinnedToNameSpaceTree -- PKEY_IsPinnedToNameSpaceTree</para>
             <para>Description: A bool value to know if a shell folder is pinned to the navigation pane
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsRead">
             <summary>
             <para>Name:     System.IsRead -- PKEY_IsRead</para>
             <para>Description: Has the item been read?
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsSearchOnlyItem">
             <summary>
             <para>Name:     System.IsSearchOnlyItem -- PKEY_IsSearchOnlyItem</para>
             <para>Description: Identifies if a location or a library is search only
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsSendToTarget">
             <summary>
             <para>Name:     System.IsSendToTarget -- PKEY_IsSendToTarget</para>
             <para>Description: Provided by certain shell folders. Return TRUE if the folder is a valid Send To target.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 33</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IsShared">
             <summary>
             <para>Name:     System.IsShared -- PKEY_IsShared</para>
             <para>Description: Is this item shared?  This only checks for ACLs that are not inherited.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {EF884C5B-2BFE-41BB-AAE5-76EEDF4F9902}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemAuthors">
             <summary>
             <para>Name:     System.ItemAuthors -- PKEY_ItemAuthors</para>
             <para>Description: This is the generic list of authors associated with an item. 
            
            For example, the artist name for a track is the item author.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D0A04F0A-462A-48A4-BB2F-3706E88DBD7D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemClassType">
            <summary>
            <para>Name:     System.ItemClassType -- PKEY_ItemClassType</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {048658AD-2DB8-41A4-BBB6-AC1EF1207EB1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemDate">
             <summary>
             <para>Name:     System.ItemDate -- PKEY_ItemDate</para>
             <para>Description: This is the main date for an item. The date of interest. 
            
            For example, for photos this maps to System.Photo.DateTaken.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {F7DB74B4-4287-4103-AFBA-F1B13DCD75CF}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemFolderNameDisplay">
             <summary>
             <para>Name:     System.ItemFolderNameDisplay -- PKEY_ItemFolderNameDisplay</para>
             <para>Description: This is the user-friendly display name of the parent folder of an item.
            
            If System.ItemFolderPathDisplay is VT_EMPTY, then this property should be too.  Otherwise, it 
            should be derived appropriately by the data source from System.ItemFolderPathDisplay.
            
            If the folder is a file folder, the value will be localized if a localized name is available.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "bar"
                "\\server\share\mydir\goodnews.doc"   "mydir"
                "\\server\share\numbers.xls"          "share"
                "c:\foo\MyFolder"                     "foo"
                "/Mailbox Account/Inbox/'Re: Hello!'" "Inbox"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 2 (PID_STG_DIRECTORY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemFolderPathDisplay">
             <summary>
             <para>Name:     System.ItemFolderPathDisplay -- PKEY_ItemFolderPathDisplay</para>
             <para>Description: This is the user-friendly display path of the parent folder of an item.
            
            If System.ItemPathDisplay is VT_EMPTY, then this property should be too.  Otherwise, it should 
            be derived appropriately by the data source from System.ItemPathDisplay.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "c:\foo\bar"
                "\\server\share\mydir\goodnews.doc"   "\\server\share\mydir"
                "\\server\share\numbers.xls"          "\\server\share"
                "c:\foo\MyFolder"                     "c:\foo"
                "/Mailbox Account/Inbox/'Re: Hello!'" "/Mailbox Account/Inbox"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemFolderPathDisplayNarrow">
             <summary>
             <para>Name:     System.ItemFolderPathDisplayNarrow -- PKEY_ItemFolderPathDisplayNarrow</para>
             <para>Description: This is the user-friendly display path of the parent folder of an item.  The format of the string
            should be tailored such that the folder name comes first, to optimize for a narrow viewing column.
            
            If the folder is a file folder, the value includes localized names if they are present.
            
            If System.ItemFolderPathDisplay is VT_EMPTY, then this property should be too.  Otherwise, it should
            be derived appropriately by the data source from System.ItemFolderPathDisplay.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "bar (c:\foo)"
                "\\server\share\mydir\goodnews.doc"   "mydir (\\server\share)"
                "\\server\share\numbers.xls"          "share (\\server)"
                "c:\foo\MyFolder"                     "foo (c:\)"
                "/Mailbox Account/Inbox/'Re: Hello!'" "Inbox (/Mailbox Account)"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {DABD30ED-0043-4789-A7F8-D013A4736622}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemName">
             <summary>
             <para>Name:     System.ItemName -- PKEY_ItemName</para>
             <para>Description: This is the base-name of the System.ItemNameDisplay.
            
            If the item is a file this property
            includes the extension in all cases, and will be localized if a localized name is available.
            
            If the item is a message, then the value of this property does not include the forwarding or
            reply prefixes (see System.ItemNamePrefix).
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6B8DA074-3B5C-43BC-886F-0A2CDCE00B6F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemNameDisplay">
             <summary>
             <para>Name:     System.ItemNameDisplay -- PKEY_ItemNameDisplay</para>
             <para>Description: This is the display name in "most complete" form.  This is the best effort unique representation
            of the name of an item that makes sense for end users to read.  It is the concatentation of
            System.ItemNamePrefix and System.ItemName.
            
            If the item is a file this property
            includes the extension in all cases, and will be localized if a localized name is available.
            
            There are acceptable cases when System.FileName is not VT_EMPTY, yet the value of this property 
            is completely different.  Email messages are a key example.  If the item is an email message, 
            the item name is likely the subject.  In that case, the value must be the concatenation of the
            System.ItemNamePrefix and System.ItemName.  Since the value of System.ItemNamePrefix excludes
            any trailing whitespace, the concatenation must include a whitespace when generating System.ItemNameDisplay.
            
            Note that this property is not guaranteed to be unique, but the idea is to promote the most likely
            candidate that can be unique and also makes sense for end users. For example, for documents, you
            might think about using System.Title as the System.ItemNameDisplay, but in practice the title of
            the documents may not be useful or unique enough to be of value as the sole System.ItemNameDisplay.  
            Instead, providing the value of System.FileName as the value of System.ItemNameDisplay is a better
            candidate.  In Windows Mail, the emails are stored in the file system as .eml files and the 
            System.FileName for those files are not human-friendly as they contain GUIDs. In this example, 
            promoting System.Subject as System.ItemNameDisplay makes more sense.
            
            Compatibility notes:
            
            Shell folder implementations on Vista: use PKEY_ItemNameDisplay for the name column when
            you want Explorer to call ISF::GetDisplayNameOf(SHGDN_NORMAL) to get the value of the name. Use
            another PKEY (like PKEY_ItemName) when you want Explorer to call either the folder's property store or
            ISF2::GetDetailsEx in order to get the value of the name.
            
            Shell folder implementations on XP: the first column needs to be the name column, and Explorer
            will call ISF::GetDisplayNameOf to get the value of the name.  The PKEY/SCID does not matter.
            
            Example values:
            
                File:          "hello.txt"
                Message:       "Re: Let's talk about Tom's argyle socks!"
                Device folder: "song.wma"
                Folder:        "Documents"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 10 (PID_STG_NAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemNamePrefix">
             <summary>
             <para>Name:     System.ItemNamePrefix -- PKEY_ItemNamePrefix</para>
             <para>Description: This is the prefix of an item, used for email messages.
            where the subject begins with "Re:" which is the prefix.
            
            If the item is a file, then the value of this property is VT_EMPTY.
            
            If the item is a message, then the value of this property is the forwarding or reply 
            prefixes (including delimiting colon, but no whitespace), or VT_EMPTY if there is no prefix.
            
            Example values:
            
            System.ItemNamePrefix    System.ItemName      System.ItemNameDisplay
            ---------------------    -------------------  ----------------------
            VT_EMPTY                 "Great day"          "Great day"
            "Re:"                    "Great day"          "Re: Great day"
            "Fwd: "                  "Monthly budget"     "Fwd: Monthly budget"
            VT_EMPTY                 "accounts.xls"       "accounts.xls"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D7313FF1-A77A-401C-8C99-3DBDD68ADD36}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemParticipants">
             <summary>
             <para>Name:     System.ItemParticipants -- PKEY_ItemParticipants</para>
             <para>Description: This is the generic list of people associated with an item and who contributed 
            to the item. 
            
            For example, this is the combination of people in the To list, Cc list and 
            sender of an email message.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D4D0AA16-9948-41A4-AA85-D97FF9646993}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemPathDisplay">
             <summary>
             <para>Name:     System.ItemPathDisplay -- PKEY_ItemPathDisplay</para>
             <para>Description: This is the user-friendly display path to the item.
            
            If the item is a file or folder this property
            includes the extension in all cases, and will be localized if a localized name is available.
            
            For other items,this is the user-friendly equivalent, assuming the item exists in hierarchical storage.
            
            Unlike System.ItemUrl, this property value does not include the URL scheme.
            
            To parse an item path, use System.ItemUrl or System.ParsingPath.  To reference shell 
            namespace items using shell APIs, use System.ParsingPath.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "c:\foo\bar\hello.txt"
                "\\server\share\mydir\goodnews.doc"   "\\server\share\mydir\goodnews.doc"
                "\\server\share\numbers.xls"          "\\server\share\numbers.xls"
                "c:\foo\MyFolder"                     "c:\foo\MyFolder"
                "/Mailbox Account/Inbox/'Re: Hello!'" "/Mailbox Account/Inbox/'Re: Hello!'"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 7</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemPathDisplayNarrow">
             <summary>
             <para>Name:     System.ItemPathDisplayNarrow -- PKEY_ItemPathDisplayNarrow</para>
             <para>Description: This is the user-friendly display path to the item. The format of the string should be 
            tailored such that the name comes first, to optimize for a narrow viewing column.
            
            If the item is a file, the value excludes the file extension, and includes localized names if they are present.
            If the item is a message, the value includes the System.ItemNamePrefix.
            
            To parse an item path, use System.ItemUrl or System.ParsingPath.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "hello (c:\foo\bar)"
                "\\server\share\mydir\goodnews.doc"   "goodnews (\\server\share\mydir)"
                "\\server\share\folder"               "folder (\\server\share)"
                "c:\foo\MyFolder"                     "MyFolder (c:\foo)"
                "/Mailbox Account/Inbox/'Re: Hello!'" "Re: Hello! (/Mailbox Account/Inbox)"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemType">
             <summary>
             <para>Name:     System.ItemType -- PKEY_ItemType</para>
             <para>Description: This is the canonical type of the item and is intended to be programmatically
            parsed.
            
            If there is no canonical type, the value is VT_EMPTY.
            
            If the item is a file (ie, System.FileName is not VT_EMPTY), the value is the same as
            System.FileExtension.
            
            Use System.ItemTypeText when you want to display the type to end users in a view.  (If
             the item is a file, passing the System.ItemType value to PSFormatForDisplay will
             result in the same value as System.ItemTypeText.)
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                ".txt"
                "\\server\share\mydir\goodnews.doc"   ".doc"
                "\\server\share\folder"               "Directory"
                "c:\foo\MyFolder"                     "Directory"
                [desktop]                             "Folder"
                "/Mailbox Account/Inbox/'Re: Hello!'" "MAPI/IPM.Message"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 11</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemTypeText">
             <summary>
             <para>Name:     System.ItemTypeText -- PKEY_ItemTypeText</para>
             <para>Description: This is the user friendly type name of the item.  This is not intended to be
            programmatically parsed.
            
            If System.ItemType is VT_EMPTY, the value of this property is also VT_EMPTY.
            
            If the item is a file, the value of this property is the same as if you passed the 
            file's System.ItemType value to PSFormatForDisplay.
            
            This property should not be confused with System.Kind, where System.Kind is a high-level
            user friendly kind name. For example, for a document, System.Kind = "Document" and 
            System.Item.Type = ".doc" and System.Item.TypeText = "Microsoft Word Document"
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "Text File"
                "\\server\share\mydir\goodnews.doc"   "Microsoft Word Document"
                "\\server\share\folder"               "File Folder"
                "c:\foo\MyFolder"                     "File Folder"
                "/Mailbox Account/Inbox/'Re: Hello!'" "Outlook E-Mail Message"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 4 (PID_STG_STORAGETYPE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ItemUrl">
             <summary>
             <para>Name:     System.ItemUrl -- PKEY_ItemUrl</para>
             <para>Description: This always represents a well formed URL that points to the item.  
            
            To reference shell namespace items using shell APIs, use System.ParsingPath.
            
            Example values:
            
                Files:    "file:///c:/foo/bar/hello.txt"
                          "csc://{GUID}/..."
                Messages: "mapi://..."
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Query) {49691C90-7E17-101A-A91C-08002B2ECDA9}, 9 (DISPID_QUERY_VIRTUALPATH)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Keywords">
             <summary>
             <para>Name:     System.Keywords -- PKEY_Keywords</para>
             <para>Description: The keywords for the item.  Also referred to as tags.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 5 (PIDSI_KEYWORDS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Kind">
             <summary>
             <para>Name:     System.Kind -- PKEY_Kind</para>
             <para>Description: System.Kind is used to map extensions to various .Search folders.
            Extensions are mapped to Kinds at HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\KindMap
            The list of kinds is not extensible.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {1E3EE840-BC2B-476C-8237-2ACD1A839B22}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.KindText">
             <summary>
             <para>Name:     System.KindText -- PKEY_KindText</para>
             <para>Description: This is the user-friendly form of System.Kind.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {F04BEF95-C585-4197-A2B7-DF46FDC9EE6D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Language">
             <summary>
             <para>Name:     System.Language -- PKEY_Language</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 28</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.MileageInformation">
            <summary>
            <para>Name:     System.MileageInformation -- PKEY_MileageInformation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {FDF84370-031A-4ADD-9E91-0D775F1C6605}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.MIMEType">
             <summary>
             <para>Name:     System.MIMEType -- PKEY_MIMEType</para>
             <para>Description: The MIME type.  Eg, for EML files: 'message/rfc822'.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {0B63E350-9CCC-11D0-BCDB-00805FCCCE04}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.NamespaceCLSID">
             <summary>
             <para>Name:     System.NamespaceCLSID -- PKEY_NamespaceCLSID</para>
             <para>Description: The CLSID of the name space extension for an item, the object that implements IShellFolder for this item
            </para>
             <para>Type:     Guid -- VT_CLSID</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Null">
            <summary>
            <para>Name:     System.Null -- PKEY_Null</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {00000000-0000-0000-0000-000000000000}, 0</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.OfflineAvailability">
            <summary>
            <para>Name:     System.OfflineAvailability -- PKEY_OfflineAvailability</para>
            <para>Description: </para>
            <para>Type:     UInt32 -- VT_UI4</para>
            <para>FormatID: {A94688B6-7D9F-4570-A648-E3DFC0AB2B3F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.OfflineStatus">
            <summary>
            <para>Name:     System.OfflineStatus -- PKEY_OfflineStatus</para>
            <para>Description: </para>
            <para>Type:     UInt32 -- VT_UI4</para>
            <para>FormatID: {6D24888F-4718-4BDA-AFED-EA0FB4386CD8}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.OriginalFileName">
             <summary>
             <para>Name:     System.OriginalFileName -- PKEY_OriginalFileName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.OwnerSID">
             <summary>
             <para>Name:     System.OwnerSID -- PKEY_OwnerSID</para>
             <para>Description: SID of the user that owns the library.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ParentalRating">
             <summary>
             <para>Name:     System.ParentalRating -- PKEY_ParentalRating</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 21 (PIDMSI_PARENTAL_RATING)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ParentalRatingReason">
            <summary>
            <para>Name:     System.ParentalRatingReason -- PKEY_ParentalRatingReason</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {10984E0A-F9F2-4321-B7EF-BAF195AF4319}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ParentalRatingsOrganization">
            <summary>
            <para>Name:     System.ParentalRatingsOrganization -- PKEY_ParentalRatingsOrganization</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {A7FE0840-1344-46F0-8D37-52ED712A4BF9}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ParsingBindContext">
             <summary>
             <para>Name:     System.ParsingBindContext -- PKEY_ParsingBindContext</para>
             <para>Description: used to get the IBindCtx for an item for parsing
            </para>
             <para>Type:     Any -- VT_NULL  Legacy code may treat this as VT_UNKNOWN.</para>
             <para>FormatID: {DFB9A04D-362F-4CA3-B30B-0254B17B5B84}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ParsingName">
             <summary>
             <para>Name:     System.ParsingName -- PKEY_ParsingName</para>
             <para>Description: The shell namespace name of an item relative to a parent folder.  This name may be passed to 
            IShellFolder::ParseDisplayName() of the parent shell folder.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 24</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ParsingPath">
             <summary>
             <para>Name:     System.ParsingPath -- PKEY_ParsingPath</para>
             <para>Description: This is the shell namespace path to the item.  This path may be passed to 
            SHParseDisplayName to parse the path to the correct shell folder.
            
            If the item is a file, the value is identical to System.ItemPathDisplay.
            
            If the item cannot be accessed through the shell namespace, this value is VT_EMPTY.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 30</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PerceivedType">
             <summary>
             <para>Name:     System.PerceivedType -- PKEY_PerceivedType</para>
             <para>Description: The perceived type of a shell item, based upon its canonical type.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PercentFull">
             <summary>
             <para>Name:     System.PercentFull -- PKEY_PercentFull</para>
             <para>Description: The amount filled as a percentage, multiplied by 100 (ie, the valid range is 0 through 100).
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 5  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Priority">
             <summary>
             <para>Name:     System.Priority -- PKEY_Priority</para>
             <para>Description: 
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {9C1FCF74-2D97-41BA-B4AE-CB2E3661A6E4}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PriorityText">
             <summary>
             <para>Name:     System.PriorityText -- PKEY_PriorityText</para>
             <para>Description: This is the user-friendly form of System.Priority.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D98BE98B-B86B-4095-BF52-9D23B2E0A752}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Project">
            <summary>
            <para>Name:     System.Project -- PKEY_Project</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {39A7F922-477C-48DE-8BC8-B28441E342E3}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ProviderItemID">
             <summary>
             <para>Name:     System.ProviderItemID -- PKEY_ProviderItemID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {F21D9941-81F0-471A-ADEE-4E74B49217ED}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Rating">
             <summary>
             <para>Name:     System.Rating -- PKEY_Rating</para>
             <para>Description: Indicates the users preference rating of an item on a scale of 1-99 (1-12 = One Star, 
            13-37 = Two Stars, 38-62 = Three Stars, 63-87 = Four Stars, 88-99 = Five Stars).
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 9 (PIDMSI_RATING)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RatingText">
             <summary>
             <para>Name:     System.RatingText -- PKEY_RatingText</para>
             <para>Description: This is the user-friendly form of System.Rating.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {90197CA7-FD8F-4E8C-9DA3-B57E1E609295}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sensitivity">
             <summary>
             <para>Name:     System.Sensitivity -- PKEY_Sensitivity</para>
             <para>Description: 
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {F8D3F6AC-4874-42CB-BE59-AB454B30716A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.SensitivityText">
             <summary>
             <para>Name:     System.SensitivityText -- PKEY_SensitivityText</para>
             <para>Description: This is the user-friendly form of System.Sensitivity.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D0C7F054-3F72-4725-8527-129A577CB269}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.SFGAOFlags">
             <summary>
             <para>Name:     System.SFGAOFlags -- PKEY_SFGAOFlags</para>
             <para>Description: IShellFolder::GetAttributesOf flags, with SFGAO_PKEYSFGAOMASK attributes masked out.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 25</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.SharedWith">
             <summary>
             <para>Name:     System.SharedWith -- PKEY_SharedWith</para>
             <para>Description: Who is the item shared with?
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {EF884C5B-2BFE-41BB-AAE5-76EEDF4F9902}, 200</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ShareUserRating">
             <summary>
             <para>Name:     System.ShareUserRating -- PKEY_ShareUserRating</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 12 (PIDMSI_SHARE_USER_RATING)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.SharingStatus">
             <summary>
             <para>Name:     System.SharingStatus -- PKEY_SharingStatus</para>
             <para>Description: What is the item's sharing status (not shared, shared, everyone (homegroup or everyone), or private)?
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {EF884C5B-2BFE-41BB-AAE5-76EEDF4F9902}, 300</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.SimpleRating">
             <summary>
             <para>Name:     System.SimpleRating -- PKEY_SimpleRating</para>
             <para>Description: Indicates the users preference rating of an item on a scale of 0-5 (0=unrated, 1=One Star, 2=Two Stars, 3=Three Stars,
            4=Four Stars, 5=Five Stars)
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {A09F084E-AD41-489F-8076-AA5BE3082BCA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Size">
             <summary>
             <para>Name:     System.Size -- PKEY_Size</para>
             <para>Description: 
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 12 (PID_STG_SIZE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.SoftwareUsed">
             <summary>
             <para>Name:     System.SoftwareUsed -- PKEY_SoftwareUsed</para>
             <para>Description: PropertyTagSoftwareUsed
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 305</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.SourceItem">
            <summary>
            <para>Name:     System.SourceItem -- PKEY_SourceItem</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {668CDFA5-7A1B-4323-AE4B-E527393A1D81}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.StartDate">
            <summary>
            <para>Name:     System.StartDate -- PKEY_StartDate</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {48FD6EC8-8A12-4CDF-A03E-4EC5A511EDDE}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Status">
            <summary>
            <para>Name:     System.Status -- PKEY_Status</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: (FMTID_IntSite) {000214A1-0000-0000-C000-000000000046}, 9</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Subject">
             <summary>
             <para>Name:     System.Subject -- PKEY_Subject</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 3 (PIDSI_SUBJECT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Thumbnail">
             <summary>
             <para>Name:     System.Thumbnail -- PKEY_Thumbnail</para>
             <para>Description: A data that represents the thumbnail in VT_CF format.
            </para>
             <para>Type:     Clipboard -- VT_CF</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 17 (PIDSI_THUMBNAIL)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ThumbnailCacheId">
             <summary>
             <para>Name:     System.ThumbnailCacheId -- PKEY_ThumbnailCacheId</para>
             <para>Description: Unique value that can be used as a key to cache thumbnails. The value changes when the name, volume, or data modified 
            of an item changes.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {446D16B1-8DAD-4870-A748-402EA43D788C}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.ThumbnailStream">
             <summary>
             <para>Name:     System.ThumbnailStream -- PKEY_ThumbnailStream</para>
             <para>Description: Data that represents the thumbnail in VT_STREAM format that GDI+/WindowsCodecs supports (jpg, png, etc).
            </para>
             <para>Type:     Stream -- VT_STREAM</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 27</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Title">
             <summary>
             <para>Name:     System.Title -- PKEY_Title</para>
             <para>Description: Title of item.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 2 (PIDSI_TITLE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.TotalFileSize">
             <summary>
             <para>Name:     System.TotalFileSize -- PKEY_TotalFileSize</para>
             <para>Description: 
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 14</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Trademarks">
             <summary>
             <para>Name:     System.Trademarks -- PKEY_Trademarks</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 9 (PIDVSI_Trademarks)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.AppUserModel">
            <summary>
            AppUserModel Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.AppUserModel.ExcludeFromShowInNewInstall">
            <summary>
            <para>Name:     System.AppUserModel.ExcludeFromShowInNewInstall -- PKEY_AppUserModel_ExcludeFromShowInNewInstall</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 8</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.AppUserModel.ID">
            <summary>
            <para>Name:     System.AppUserModel.ID -- PKEY_AppUserModel_ID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 5</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.AppUserModel.IsDestListSeparator">
            <summary>
            <para>Name:     System.AppUserModel.IsDestListSeparator -- PKEY_AppUserModel_IsDestListSeparator</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 6</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.AppUserModel.PreventPinning">
            <summary>
            <para>Name:     System.AppUserModel.PreventPinning -- PKEY_AppUserModel_PreventPinning</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 9</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.AppUserModel.RelaunchCommand">
            <summary>
            <para>Name:     System.AppUserModel.RelaunchCommand -- PKEY_AppUserModel_RelaunchCommand</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 2</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.AppUserModel.RelaunchDisplayNameResource">
            <summary>
            <para>Name:     System.AppUserModel.RelaunchDisplayNameResource -- PKEY_AppUserModel_RelaunchDisplayNameResource</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 4</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.AppUserModel.RelaunchIconResource">
            <summary>
            <para>Name:     System.AppUserModel.RelaunchIconResource -- PKEY_AppUserModel_RelaunchIconResource</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 3</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio">
            <summary>
            Audio Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio.ChannelCount">
             <summary>
             <para>Name:     System.Audio.ChannelCount -- PKEY_Audio_ChannelCount</para>
             <para>Description: Indicates the channel count for the audio file.  Values: 1 (mono), 2 (stereo).
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 7 (PIDASI_CHANNEL_COUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio.Compression">
             <summary>
             <para>Name:     System.Audio.Compression -- PKEY_Audio_Compression</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 10 (PIDASI_COMPRESSION)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio.EncodingBitrate">
             <summary>
             <para>Name:     System.Audio.EncodingBitrate -- PKEY_Audio_EncodingBitrate</para>
             <para>Description: Indicates the average data rate in Hz for the audio file in "bits per second".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 4 (PIDASI_AVG_DATA_RATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio.Format">
             <summary>
             <para>Name:     System.Audio.Format -- PKEY_Audio_Format</para>
             <para>Description: Indicates the format of the audio file.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)  Legacy code may treat this as VT_BSTR.</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 2 (PIDASI_FORMAT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio.IsVariableBitRate">
            <summary>
            <para>Name:     System.Audio.IsVariableBitRate -- PKEY_Audio_IsVariableBitRate</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {E6822FEE-8C17-4D62-823C-8E9CFCBD1D5C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio.PeakValue">
            <summary>
            <para>Name:     System.Audio.PeakValue -- PKEY_Audio_PeakValue</para>
            <para>Description: </para>
            <para>Type:     UInt32 -- VT_UI4</para>
            <para>FormatID: {2579E5D0-1116-4084-BD9A-9B4F7CB4DF5E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio.SampleRate">
             <summary>
             <para>Name:     System.Audio.SampleRate -- PKEY_Audio_SampleRate</para>
             <para>Description: Indicates the audio sample rate for the audio file in "samples per second".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 5 (PIDASI_SAMPLE_RATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio.SampleSize">
             <summary>
             <para>Name:     System.Audio.SampleSize -- PKEY_Audio_SampleSize</para>
             <para>Description: Indicates the audio sample size for the audio file in "bits per sample".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 6 (PIDASI_SAMPLE_SIZE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio.StreamName">
             <summary>
             <para>Name:     System.Audio.StreamName -- PKEY_Audio_StreamName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 9 (PIDASI_STREAM_NAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Audio.StreamNumber">
             <summary>
             <para>Name:     System.Audio.StreamNumber -- PKEY_Audio_StreamNumber</para>
             <para>Description: 
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 8 (PIDASI_STREAM_NUMBER)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar">
            <summary>
            Calendar Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.Duration">
             <summary>
             <para>Name:     System.Calendar.Duration -- PKEY_Calendar_Duration</para>
             <para>Description: The duration as specified in a string.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {293CA35A-09AA-4DD2-B180-1FE245728A52}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.IsOnline">
             <summary>
             <para>Name:     System.Calendar.IsOnline -- PKEY_Calendar_IsOnline</para>
             <para>Description: Identifies if the event is an online event.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {BFEE9149-E3E2-49A7-A862-C05988145CEC}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.IsRecurring">
            <summary>
            <para>Name:     System.Calendar.IsRecurring -- PKEY_Calendar_IsRecurring</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {315B9C8D-80A9-4EF9-AE16-8E746DA51D70}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.Location">
            <summary>
            <para>Name:     System.Calendar.Location -- PKEY_Calendar_Location</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {F6272D18-CECC-40B1-B26A-3911717AA7BD}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.OptionalAttendeeAddresses">
            <summary>
            <para>Name:     System.Calendar.OptionalAttendeeAddresses -- PKEY_Calendar_OptionalAttendeeAddresses</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {D55BAE5A-3892-417A-A649-C6AC5AAAEAB3}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.OptionalAttendeeNames">
            <summary>
            <para>Name:     System.Calendar.OptionalAttendeeNames -- PKEY_Calendar_OptionalAttendeeNames</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {09429607-582D-437F-84C3-DE93A2B24C3C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.OrganizerAddress">
             <summary>
             <para>Name:     System.Calendar.OrganizerAddress -- PKEY_Calendar_OrganizerAddress</para>
             <para>Description: Address of the organizer organizing the event.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {744C8242-4DF5-456C-AB9E-014EFB9021E3}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.OrganizerName">
             <summary>
             <para>Name:     System.Calendar.OrganizerName -- PKEY_Calendar_OrganizerName</para>
             <para>Description: Name of the organizer organizing the event.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {AAA660F9-9865-458E-B484-01BC7FE3973E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.ReminderTime">
            <summary>
            <para>Name:     System.Calendar.ReminderTime -- PKEY_Calendar_ReminderTime</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {72FC5BA4-24F9-4011-9F3F-ADD27AFAD818}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.RequiredAttendeeAddresses">
            <summary>
            <para>Name:     System.Calendar.RequiredAttendeeAddresses -- PKEY_Calendar_RequiredAttendeeAddresses</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {0BA7D6C3-568D-4159-AB91-781A91FB71E5}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.RequiredAttendeeNames">
            <summary>
            <para>Name:     System.Calendar.RequiredAttendeeNames -- PKEY_Calendar_RequiredAttendeeNames</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {B33AF30B-F552-4584-936C-CB93E5CDA29F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.Resources">
            <summary>
            <para>Name:     System.Calendar.Resources -- PKEY_Calendar_Resources</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {00F58A38-C54B-4C40-8696-97235980EAE1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.ResponseStatus">
             <summary>
             <para>Name:     System.Calendar.ResponseStatus -- PKEY_Calendar_ResponseStatus</para>
             <para>Description: This property stores the status of the user responses to meetings in her calendar.
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {188C1F91-3C40-4132-9EC5-D8B03B72A8A2}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.ShowTimeAs">
             <summary>
             <para>Name:     System.Calendar.ShowTimeAs -- PKEY_Calendar_ShowTimeAs</para>
             <para>Description: 
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {5BF396D4-5EB2-466F-BDE9-2FB3F2361D6E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Calendar.ShowTimeAsText">
             <summary>
             <para>Name:     System.Calendar.ShowTimeAsText -- PKEY_Calendar_ShowTimeAsText</para>
             <para>Description: This is the user-friendly form of System.Calendar.ShowTimeAs.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {53DA57CF-62C0-45C4-81DE-7610BCEFD7F5}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Communication">
            <summary>
            Communication Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Communication.AccountName">
             <summary>
             <para>Name:     System.Communication.AccountName -- PKEY_Communication_AccountName</para>
             <para>Description: Account Name
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Communication.DateItemExpires">
             <summary>
             <para>Name:     System.Communication.DateItemExpires -- PKEY_Communication_DateItemExpires</para>
             <para>Description: Date the item expires due to the retention policy.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {428040AC-A177-4C8A-9760-F6F761227F9A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Communication.FollowupIconIndex">
             <summary>
             <para>Name:     System.Communication.FollowupIconIndex -- PKEY_Communication_FollowupIconIndex</para>
             <para>Description: This is the icon index used on messages marked for followup.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {83A6347E-6FE4-4F40-BA9C-C4865240D1F4}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Communication.HeaderItem">
             <summary>
             <para>Name:     System.Communication.HeaderItem -- PKEY_Communication_HeaderItem</para>
             <para>Description: This property will be true if the item is a header item which means the item hasn't been fully downloaded.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {C9C34F84-2241-4401-B607-BD20ED75AE7F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Communication.PolicyTag">
             <summary>
             <para>Name:     System.Communication.PolicyTag -- PKEY_Communication_PolicyTag</para>
             <para>Description: This a string used to identify the retention policy applied to the item.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {EC0B4191-AB0B-4C66-90B6-C6637CDEBBAB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Communication.SecurityFlags">
             <summary>
             <para>Name:     System.Communication.SecurityFlags -- PKEY_Communication_SecurityFlags</para>
             <para>Description: Security flags associated with the item to know if the item is encrypted, signed or DRM enabled.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {8619A4B6-9F4D-4429-8C0F-B996CA59E335}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Communication.Suffix">
            <summary>
            <para>Name:     System.Communication.Suffix -- PKEY_Communication_Suffix</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {807B653A-9E91-43EF-8F97-11CE04EE20C5}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Communication.TaskStatus">
            <summary>
            <para>Name:     System.Communication.TaskStatus -- PKEY_Communication_TaskStatus</para>
            <para>Description: </para>
            <para>Type:     UInt16 -- VT_UI2</para>
            <para>FormatID: {BE1A72C6-9A1D-46B7-AFE7-AFAF8CEF4999}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Communication.TaskStatusText">
             <summary>
             <para>Name:     System.Communication.TaskStatusText -- PKEY_Communication_TaskStatusText</para>
             <para>Description: This is the user-friendly form of System.Communication.TaskStatus.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A6744477-C237-475B-A075-54F34498292A}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Computer">
            <summary>
            Computer Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Computer.DecoratedFreeSpace">
             <summary>
             <para>Name:     System.Computer.DecoratedFreeSpace -- PKEY_Computer_DecoratedFreeSpace</para>
             <para>Description: Free space and total space: "%s free of %s"
            </para>
             <para>Type:     Multivalue UInt64 -- VT_VECTOR | VT_UI8  (For variants: VT_ARRAY | VT_UI8)</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 7  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact">
            <summary>
            Contact Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.Anniversary">
            <summary>
            <para>Name:     System.Contact.Anniversary -- PKEY_Contact_Anniversary</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {9AD5BADB-CEA7-4470-A03D-B84E51B9949E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.AssistantName">
            <summary>
            <para>Name:     System.Contact.AssistantName -- PKEY_Contact_AssistantName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CD102C9C-5540-4A88-A6F6-64E4981C8CD1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.AssistantTelephone">
            <summary>
            <para>Name:     System.Contact.AssistantTelephone -- PKEY_Contact_AssistantTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9A93244D-A7AD-4FF8-9B99-45EE4CC09AF6}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.Birthday">
            <summary>
            <para>Name:     System.Contact.Birthday -- PKEY_Contact_Birthday</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 47</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.BusinessAddress">
            <summary>
            <para>Name:     System.Contact.BusinessAddress -- PKEY_Contact_BusinessAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {730FB6DD-CF7C-426B-A03F-BD166CC9EE24}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.BusinessAddressCity">
            <summary>
            <para>Name:     System.Contact.BusinessAddressCity -- PKEY_Contact_BusinessAddressCity</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {402B5934-EC5A-48C3-93E6-85E86A2D934E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.BusinessAddressCountry">
            <summary>
            <para>Name:     System.Contact.BusinessAddressCountry -- PKEY_Contact_BusinessAddressCountry</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {B0B87314-FCF6-4FEB-8DFF-A50DA6AF561C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.BusinessAddressPostalCode">
            <summary>
            <para>Name:     System.Contact.BusinessAddressPostalCode -- PKEY_Contact_BusinessAddressPostalCode</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E1D4A09E-D758-4CD1-B6EC-34A8B5A73F80}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.BusinessAddressPostOfficeBox">
            <summary>
            <para>Name:     System.Contact.BusinessAddressPostOfficeBox -- PKEY_Contact_BusinessAddressPostOfficeBox</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {BC4E71CE-17F9-48D5-BEE9-021DF0EA5409}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.BusinessAddressState">
            <summary>
            <para>Name:     System.Contact.BusinessAddressState -- PKEY_Contact_BusinessAddressState</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {446F787F-10C4-41CB-A6C4-4D0343551597}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.BusinessAddressStreet">
            <summary>
            <para>Name:     System.Contact.BusinessAddressStreet -- PKEY_Contact_BusinessAddressStreet</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {DDD1460F-C0BF-4553-8CE4-10433C908FB0}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.BusinessFaxNumber">
             <summary>
             <para>Name:     System.Contact.BusinessFaxNumber -- PKEY_Contact_BusinessFaxNumber</para>
             <para>Description: Business fax number of the contact.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {91EFF6F3-2E27-42CA-933E-7C999FBE310B}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.BusinessHomePage">
            <summary>
            <para>Name:     System.Contact.BusinessHomePage -- PKEY_Contact_BusinessHomePage</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {56310920-2491-4919-99CE-EADB06FAFDB2}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.BusinessTelephone">
            <summary>
            <para>Name:     System.Contact.BusinessTelephone -- PKEY_Contact_BusinessTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {6A15E5A0-0A1E-4CD7-BB8C-D2F1B0C929BC}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.CallbackTelephone">
            <summary>
            <para>Name:     System.Contact.CallbackTelephone -- PKEY_Contact_CallbackTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {BF53D1C3-49E0-4F7F-8567-5A821D8AC542}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.CarTelephone">
            <summary>
            <para>Name:     System.Contact.CarTelephone -- PKEY_Contact_CarTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8FDC6DEA-B929-412B-BA90-397A257465FE}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.Children">
            <summary>
            <para>Name:     System.Contact.Children -- PKEY_Contact_Children</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {D4729704-8EF1-43EF-9024-2BD381187FD5}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.CompanyMainTelephone">
            <summary>
            <para>Name:     System.Contact.CompanyMainTelephone -- PKEY_Contact_CompanyMainTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8589E481-6040-473D-B171-7FA89C2708ED}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.Department">
            <summary>
            <para>Name:     System.Contact.Department -- PKEY_Contact_Department</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {FC9F7306-FF8F-4D49-9FB6-3FFE5C0951EC}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.EmailAddress">
            <summary>
            <para>Name:     System.Contact.EmailAddress -- PKEY_Contact_EmailAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {F8FA7FA3-D12B-4785-8A4E-691A94F7A3E7}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.EmailAddress2">
            <summary>
            <para>Name:     System.Contact.EmailAddress2 -- PKEY_Contact_EmailAddress2</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {38965063-EDC8-4268-8491-B7723172CF29}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.EmailAddress3">
            <summary>
            <para>Name:     System.Contact.EmailAddress3 -- PKEY_Contact_EmailAddress3</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {644D37B4-E1B3-4BAD-B099-7E7C04966ACA}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.EmailAddresses">
            <summary>
            <para>Name:     System.Contact.EmailAddresses -- PKEY_Contact_EmailAddresses</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {84D8F337-981D-44B3-9615-C7596DBA17E3}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.EmailName">
            <summary>
            <para>Name:     System.Contact.EmailName -- PKEY_Contact_EmailName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CC6F4F24-6083-4BD4-8754-674D0DE87AB8}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.FileAsName">
            <summary>
            <para>Name:     System.Contact.FileAsName -- PKEY_Contact_FileAsName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {F1A24AA7-9CA7-40F6-89EC-97DEF9FFE8DB}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.FirstName">
            <summary>
            <para>Name:     System.Contact.FirstName -- PKEY_Contact_FirstName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {14977844-6B49-4AAD-A714-A4513BF60460}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.FullName">
            <summary>
            <para>Name:     System.Contact.FullName -- PKEY_Contact_FullName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {635E9051-50A5-4BA2-B9DB-4ED056C77296}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.Gender">
            <summary>
            <para>Name:     System.Contact.Gender -- PKEY_Contact_Gender</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {3C8CEE58-D4F0-4CF9-B756-4E5D24447BCD}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.GenderValue">
            <summary>
            <para>Name:     System.Contact.GenderValue -- PKEY_Contact_GenderValue</para>
            <para>Description: </para>
            <para>Type:     UInt16 -- VT_UI2</para>
            <para>FormatID: {3C8CEE58-D4F0-4CF9-B756-4E5D24447BCD}, 101</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.Hobbies">
            <summary>
            <para>Name:     System.Contact.Hobbies -- PKEY_Contact_Hobbies</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {5DC2253F-5E11-4ADF-9CFE-910DD01E3E70}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.HomeAddress">
            <summary>
            <para>Name:     System.Contact.HomeAddress -- PKEY_Contact_HomeAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {98F98354-617A-46B8-8560-5B1B64BF1F89}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.HomeAddressCity">
            <summary>
            <para>Name:     System.Contact.HomeAddressCity -- PKEY_Contact_HomeAddressCity</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 65</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.HomeAddressCountry">
            <summary>
            <para>Name:     System.Contact.HomeAddressCountry -- PKEY_Contact_HomeAddressCountry</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {08A65AA1-F4C9-43DD-9DDF-A33D8E7EAD85}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.HomeAddressPostalCode">
            <summary>
            <para>Name:     System.Contact.HomeAddressPostalCode -- PKEY_Contact_HomeAddressPostalCode</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8AFCC170-8A46-4B53-9EEE-90BAE7151E62}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.HomeAddressPostOfficeBox">
            <summary>
            <para>Name:     System.Contact.HomeAddressPostOfficeBox -- PKEY_Contact_HomeAddressPostOfficeBox</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7B9F6399-0A3F-4B12-89BD-4ADC51C918AF}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.HomeAddressState">
            <summary>
            <para>Name:     System.Contact.HomeAddressState -- PKEY_Contact_HomeAddressState</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {C89A23D0-7D6D-4EB8-87D4-776A82D493E5}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.HomeAddressStreet">
            <summary>
            <para>Name:     System.Contact.HomeAddressStreet -- PKEY_Contact_HomeAddressStreet</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {0ADEF160-DB3F-4308-9A21-06237B16FA2A}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.HomeFaxNumber">
            <summary>
            <para>Name:     System.Contact.HomeFaxNumber -- PKEY_Contact_HomeFaxNumber</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {660E04D6-81AB-4977-A09F-82313113AB26}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.HomeTelephone">
            <summary>
            <para>Name:     System.Contact.HomeTelephone -- PKEY_Contact_HomeTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 20</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.IMAddress">
            <summary>
            <para>Name:     System.Contact.IMAddress -- PKEY_Contact_IMAddress</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {D68DBD8A-3374-4B81-9972-3EC30682DB3D}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.Initials">
            <summary>
            <para>Name:     System.Contact.Initials -- PKEY_Contact_Initials</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {F3D8F40D-50CB-44A2-9718-40CB9119495D}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.JobTitle">
            <summary>
            <para>Name:     System.Contact.JobTitle -- PKEY_Contact_JobTitle</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 6</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.Label">
            <summary>
            <para>Name:     System.Contact.Label -- PKEY_Contact_Label</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {97B0AD89-DF49-49CC-834E-660974FD755B}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.LastName">
            <summary>
            <para>Name:     System.Contact.LastName -- PKEY_Contact_LastName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8F367200-C270-457C-B1D4-E07C5BCD90C7}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.MailingAddress">
            <summary>
            <para>Name:     System.Contact.MailingAddress -- PKEY_Contact_MailingAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {C0AC206A-827E-4650-95AE-77E2BB74FCC9}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.MiddleName">
            <summary>
            <para>Name:     System.Contact.MiddleName -- PKEY_Contact_MiddleName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 71</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.MobileTelephone">
            <summary>
            <para>Name:     System.Contact.MobileTelephone -- PKEY_Contact_MobileTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 35</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.NickName">
            <summary>
            <para>Name:     System.Contact.NickName -- PKEY_Contact_NickName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 74</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.OfficeLocation">
            <summary>
            <para>Name:     System.Contact.OfficeLocation -- PKEY_Contact_OfficeLocation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 7</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.OtherAddress">
            <summary>
            <para>Name:     System.Contact.OtherAddress -- PKEY_Contact_OtherAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {508161FA-313B-43D5-83A1-C1ACCF68622C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.OtherAddressCity">
            <summary>
            <para>Name:     System.Contact.OtherAddressCity -- PKEY_Contact_OtherAddressCity</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {6E682923-7F7B-4F0C-A337-CFCA296687BF}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.OtherAddressCountry">
            <summary>
            <para>Name:     System.Contact.OtherAddressCountry -- PKEY_Contact_OtherAddressCountry</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8F167568-0AAE-4322-8ED9-6055B7B0E398}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.OtherAddressPostalCode">
            <summary>
            <para>Name:     System.Contact.OtherAddressPostalCode -- PKEY_Contact_OtherAddressPostalCode</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {95C656C1-2ABF-4148-9ED3-9EC602E3B7CD}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.OtherAddressPostOfficeBox">
            <summary>
            <para>Name:     System.Contact.OtherAddressPostOfficeBox -- PKEY_Contact_OtherAddressPostOfficeBox</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8B26EA41-058F-43F6-AECC-4035681CE977}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.OtherAddressState">
            <summary>
            <para>Name:     System.Contact.OtherAddressState -- PKEY_Contact_OtherAddressState</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {71B377D6-E570-425F-A170-809FAE73E54E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.OtherAddressStreet">
            <summary>
            <para>Name:     System.Contact.OtherAddressStreet -- PKEY_Contact_OtherAddressStreet</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {FF962609-B7D6-4999-862D-95180D529AEA}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.PagerTelephone">
            <summary>
            <para>Name:     System.Contact.PagerTelephone -- PKEY_Contact_PagerTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {D6304E01-F8F5-4F45-8B15-D024A6296789}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.PersonalTitle">
            <summary>
            <para>Name:     System.Contact.PersonalTitle -- PKEY_Contact_PersonalTitle</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 69</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.PrimaryAddressCity">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressCity -- PKEY_Contact_PrimaryAddressCity</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {C8EA94F0-A9E3-4969-A94B-9C62A95324E0}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.PrimaryAddressCountry">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressCountry -- PKEY_Contact_PrimaryAddressCountry</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E53D799D-0F3F-466E-B2FF-74634A3CB7A4}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.PrimaryAddressPostalCode">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressPostalCode -- PKEY_Contact_PrimaryAddressPostalCode</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {18BBD425-ECFD-46EF-B612-7B4A6034EDA0}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.PrimaryAddressPostOfficeBox">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressPostOfficeBox -- PKEY_Contact_PrimaryAddressPostOfficeBox</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {DE5EF3C7-46E1-484E-9999-62C5308394C1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.PrimaryAddressState">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressState -- PKEY_Contact_PrimaryAddressState</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {F1176DFE-7138-4640-8B4C-AE375DC70A6D}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.PrimaryAddressStreet">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressStreet -- PKEY_Contact_PrimaryAddressStreet</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {63C25B20-96BE-488F-8788-C09C407AD812}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.PrimaryEmailAddress">
            <summary>
            <para>Name:     System.Contact.PrimaryEmailAddress -- PKEY_Contact_PrimaryEmailAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 48</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.PrimaryTelephone">
            <summary>
            <para>Name:     System.Contact.PrimaryTelephone -- PKEY_Contact_PrimaryTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 25</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.Profession">
            <summary>
            <para>Name:     System.Contact.Profession -- PKEY_Contact_Profession</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7268AF55-1CE4-4F6E-A41F-B6E4EF10E4A9}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.SpouseName">
            <summary>
            <para>Name:     System.Contact.SpouseName -- PKEY_Contact_SpouseName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9D2408B6-3167-422B-82B0-F583B7A7CFE3}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.Suffix">
            <summary>
            <para>Name:     System.Contact.Suffix -- PKEY_Contact_Suffix</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 73</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.TelexNumber">
            <summary>
            <para>Name:     System.Contact.TelexNumber -- PKEY_Contact_TelexNumber</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {C554493C-C1F7-40C1-A76C-EF8C0614003E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.TTYTDDTelephone">
            <summary>
            <para>Name:     System.Contact.TTYTDDTelephone -- PKEY_Contact_TTYTDDTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {AAF16BAC-2B55-45E6-9F6D-415EB94910DF}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.WebPage">
            <summary>
            <para>Name:     System.Contact.WebPage -- PKEY_Contact_WebPage</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 18</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.JA">
            <summary>
            JA Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.JA.CompanyNamePhonetic">
             <summary>
             <para>Name:     System.Contact.JA.CompanyNamePhonetic -- PKEY_Contact_JA_CompanyNamePhonetic</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {897B3694-FE9E-43E6-8066-260F590C0100}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.JA.FirstNamePhonetic">
             <summary>
             <para>Name:     System.Contact.JA.FirstNamePhonetic -- PKEY_Contact_JA_FirstNamePhonetic</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {897B3694-FE9E-43E6-8066-260F590C0100}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Contact.JA.LastNamePhonetic">
             <summary>
             <para>Name:     System.Contact.JA.LastNamePhonetic -- PKEY_Contact_JA_LastNamePhonetic</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {897B3694-FE9E-43E6-8066-260F590C0100}, 4</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.JA">
            <summary>
            JA Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.JA.CompanyNamePhonetic">
             <summary>
             <para>Name:     System.Contact.JA.CompanyNamePhonetic -- PKEY_Contact_JA_CompanyNamePhonetic</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {897B3694-FE9E-43E6-8066-260F590C0100}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.JA.FirstNamePhonetic">
             <summary>
             <para>Name:     System.Contact.JA.FirstNamePhonetic -- PKEY_Contact_JA_FirstNamePhonetic</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {897B3694-FE9E-43E6-8066-260F590C0100}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.JA.LastNamePhonetic">
             <summary>
             <para>Name:     System.Contact.JA.LastNamePhonetic -- PKEY_Contact_JA_LastNamePhonetic</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {897B3694-FE9E-43E6-8066-260F590C0100}, 4</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Device">
            <summary>
            Device Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Device.PrinterURL">
             <summary>
             <para>Name:     System.Device.PrinterURL -- PKEY_Device_PrinterURL</para>
             <para>Description: Printer information Printer URL.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {0B48F35A-BE6E-4F17-B108-3C4073D1669A}, 15</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DeviceInterface">
            <summary>
            DeviceInterface Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DeviceInterface.PrinterDriverDirectory">
             <summary>
             <para>Name:     System.DeviceInterface.PrinterDriverDirectory -- PKEY_DeviceInterface_PrinterDriverDirectory</para>
             <para>Description: Printer information Printer Driver Directory.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {847C66DE-B8D6-4AF9-ABC3-6F4F926BC039}, 14</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DeviceInterface.PrinterDriverName">
             <summary>
             <para>Name:     System.DeviceInterface.PrinterDriverName -- PKEY_DeviceInterface_PrinterDriverName</para>
             <para>Description: Printer information Driver Name.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {AFC47170-14F5-498C-8F30-B0D19BE449C6}, 11</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DeviceInterface.PrinterName">
             <summary>
             <para>Name:     System.DeviceInterface.PrinterName -- PKEY_DeviceInterface_PrinterName</para>
             <para>Description: Printer information Printer Name.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {0A7B84EF-0C27-463F-84EF-06C5070001BE}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DeviceInterface.PrinterPortName">
             <summary>
             <para>Name:     System.DeviceInterface.PrinterPortName -- PKEY_DeviceInterface_PrinterPortName</para>
             <para>Description: Printer information Port Name.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {EEC7B761-6F94-41B1-949F-C729720DD13C}, 12</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices">
            <summary>
            Devices Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.BatteryLife">
             <summary>
             <para>Name:     System.Devices.BatteryLife -- PKEY_Devices_BatteryLife</para>
             <para>Description: Remaining battery life of the device as an integer between 0 and 100 percent.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.BatteryPlusCharging">
             <summary>
             <para>Name:     System.Devices.BatteryPlusCharging -- PKEY_Devices_BatteryPlusCharging</para>
             <para>Description: Remaining battery life of the device as an integer between 0 and 100 percent and the device's charging state.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 22</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.BatteryPlusChargingText">
             <summary>
             <para>Name:     System.Devices.BatteryPlusChargingText -- PKEY_Devices_BatteryPlusChargingText</para>
             <para>Description: Remaining battery life of the device and the device's charging state as a string.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 23</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Category">
             <summary>
             <para>Name:     System.Devices.Category -- PKEY_Devices_Category_Desc_Singular</para>
             <para>Description: Singular form of device category.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 91</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.CategoryGroup">
             <summary>
             <para>Name:     System.Devices.CategoryGroup -- PKEY_Devices_CategoryGroup_Desc</para>
             <para>Description: Plural form of device category.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 94</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.CategoryPlural">
             <summary>
             <para>Name:     System.Devices.CategoryPlural -- PKEY_Devices_Category_Desc_Plural</para>
             <para>Description: Plural form of device category.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 92</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.ChargingState">
             <summary>
             <para>Name:     System.Devices.ChargingState -- PKEY_Devices_ChargingState</para>
             <para>Description: Boolean value representing if the device is currently charging.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 11</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Connected">
             <summary>
             <para>Name:     System.Devices.Connected -- PKEY_Devices_IsConnected</para>
             <para>Description: Device connection state. If VARIANT_TRUE, indicates the device is currently connected to the computer.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 55</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.ContainerId">
             <summary>
             <para>Name:     System.Devices.ContainerId -- PKEY_Devices_ContainerId</para>
             <para>Description: Device container ID.
            </para>
             <para>Type:     Guid -- VT_CLSID</para>
             <para>FormatID: {8C7ED206-3F8A-4827-B3AB-AE9E1FAEFC6C}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.DefaultTooltip">
             <summary>
             <para>Name:     System.Devices.DefaultTooltip -- PKEY_Devices_DefaultTooltip</para>
             <para>Description: Tooltip for default state
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {880F70A2-6082-47AC-8AAB-A739D1A300C3}, 153</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.DeviceDescription1">
             <summary>
             <para>Name:     System.Devices.DeviceDescription1 -- PKEY_Devices_DeviceDescription1</para>
             <para>Description: First line of descriptive text about the device.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 81</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.DeviceDescription2">
             <summary>
             <para>Name:     System.Devices.DeviceDescription2 -- PKEY_Devices_DeviceDescription2</para>
             <para>Description: Second line of descriptive text about the device.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 82</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.DiscoveryMethod">
             <summary>
             <para>Name:     System.Devices.DiscoveryMethod -- PKEY_Devices_DiscoveryMethod</para>
             <para>Description: Device discovery method. This indicates on what transport or physical connection the device is discovered.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 52</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.FriendlyName">
             <summary>
             <para>Name:     System.Devices.FriendlyName -- PKEY_Devices_FriendlyName</para>
             <para>Description: Device friendly name.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {656A3BB3-ECC0-43FD-8477-4AE0404A96CD}, 12288</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.FunctionPaths">
             <summary>
             <para>Name:     System.Devices.FunctionPaths -- PKEY_Devices_FunctionPaths</para>
             <para>Description: Available functions for this device.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D08DD4C0-3A9E-462E-8290-7B636B2576B9}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.InterfacePaths">
             <summary>
             <para>Name:     System.Devices.InterfacePaths -- PKEY_Devices_InterfacePaths</para>
             <para>Description: Available interfaces for this device.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D08DD4C0-3A9E-462E-8290-7B636B2576B9}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.IsDefault">
             <summary>
             <para>Name:     System.Devices.IsDefault -- PKEY_Devices_IsDefaultDevice</para>
             <para>Description: If VARIANT_TRUE, the device is not working properly.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 86</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.IsNetworkConnected">
             <summary>
             <para>Name:     System.Devices.IsNetworkConnected -- PKEY_Devices_IsNetworkDevice</para>
             <para>Description: If VARIANT_TRUE, the device is not working properly.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 85</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.IsShared">
             <summary>
             <para>Name:     System.Devices.IsShared -- PKEY_Devices_IsSharedDevice</para>
             <para>Description: If VARIANT_TRUE, the device is not working properly.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 84</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.IsSoftwareInstalling">
             <summary>
             <para>Name:     System.Devices.IsSoftwareInstalling -- PKEY_Devices_IsSoftwareInstalling</para>
             <para>Description: If VARIANT_TRUE, the device installer is currently installing software.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {83DA6326-97A6-4088-9453-A1923F573B29}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.LaunchDeviceStageFromExplorer">
             <summary>
             <para>Name:     System.Devices.LaunchDeviceStageFromExplorer -- PKEY_Devices_LaunchDeviceStageFromExplorer</para>
             <para>Description: Indicates whether to launch Device Stage or not
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 77</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.LocalMachine">
             <summary>
             <para>Name:     System.Devices.LocalMachine -- PKEY_Devices_IsLocalMachine</para>
             <para>Description: If VARIANT_TRUE, the device in question is actually the computer.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 70</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Manufacturer">
             <summary>
             <para>Name:     System.Devices.Manufacturer -- PKEY_Devices_Manufacturer</para>
             <para>Description: Device manufacturer.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {656A3BB3-ECC0-43FD-8477-4AE0404A96CD}, 8192</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.MissedCalls">
             <summary>
             <para>Name:     System.Devices.MissedCalls -- PKEY_Devices_MissedCalls</para>
             <para>Description: Number of missed calls on the device.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.ModelName">
             <summary>
             <para>Name:     System.Devices.ModelName -- PKEY_Devices_ModelName</para>
             <para>Description: Model name of the device.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {656A3BB3-ECC0-43FD-8477-4AE0404A96CD}, 8194</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.ModelNumber">
             <summary>
             <para>Name:     System.Devices.ModelNumber -- PKEY_Devices_ModelNumber</para>
             <para>Description: Model number of the device.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {656A3BB3-ECC0-43FD-8477-4AE0404A96CD}, 8195</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.NetworkedTooltip">
             <summary>
             <para>Name:     System.Devices.NetworkedTooltip -- PKEY_Devices_NetworkedTooltip</para>
             <para>Description: Tooltip for connection state
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {880F70A2-6082-47AC-8AAB-A739D1A300C3}, 152</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.NetworkName">
             <summary>
             <para>Name:     System.Devices.NetworkName -- PKEY_Devices_NetworkName</para>
             <para>Description: Name of the device's network.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 7</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.NetworkType">
             <summary>
             <para>Name:     System.Devices.NetworkType -- PKEY_Devices_NetworkType</para>
             <para>Description: String representing the type of the device's network.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.NewPictures">
             <summary>
             <para>Name:     System.Devices.NewPictures -- PKEY_Devices_NewPictures</para>
             <para>Description: Number of new pictures on the device.
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Notification">
             <summary>
             <para>Name:     System.Devices.Notification -- PKEY_Devices_Notification</para>
             <para>Description: Device Notification Property.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {06704B0C-E830-4C81-9178-91E4E95A80A0}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.NotificationStore">
             <summary>
             <para>Name:     System.Devices.NotificationStore -- PKEY_Devices_NotificationStore</para>
             <para>Description: Device Notification Store.
            </para>
             <para>Type:     Object -- VT_UNKNOWN</para>
             <para>FormatID: {06704B0C-E830-4C81-9178-91E4E95A80A0}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.NotWorkingProperly">
             <summary>
             <para>Name:     System.Devices.NotWorkingProperly -- PKEY_Devices_IsNotWorkingProperly</para>
             <para>Description: If VARIANT_TRUE, the device is not working properly.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 83</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Paired">
             <summary>
             <para>Name:     System.Devices.Paired -- PKEY_Devices_IsPaired</para>
             <para>Description: Device paired state. If VARIANT_TRUE, indicates the device is not paired with the computer.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 56</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.PrimaryCategory">
             <summary>
             <para>Name:     System.Devices.PrimaryCategory -- PKEY_Devices_PrimaryCategory</para>
             <para>Description: Primary category group for this device.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D08DD4C0-3A9E-462E-8290-7B636B2576B9}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Roaming">
             <summary>
             <para>Name:     System.Devices.Roaming -- PKEY_Devices_Roaming</para>
             <para>Description: Status indicator used to indicate if the device is roaming.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.SafeRemovalRequired">
             <summary>
             <para>Name:     System.Devices.SafeRemovalRequired -- PKEY_Devices_SafeRemovalRequired</para>
             <para>Description: Indicates if a device requires safe removal or not
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {AFD97640-86A3-4210-B67C-289C41AABE55}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.SharedTooltip">
             <summary>
             <para>Name:     System.Devices.SharedTooltip -- PKEY_Devices_SharedTooltip</para>
             <para>Description: Tooltip for sharing state
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {880F70A2-6082-47AC-8AAB-A739D1A300C3}, 151</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.SignalStrength">
             <summary>
             <para>Name:     System.Devices.SignalStrength -- PKEY_Devices_SignalStrength</para>
             <para>Description: Device signal strength.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Status1">
             <summary>
             <para>Name:     System.Devices.Status1 -- PKEY_Devices_Status1</para>
             <para>Description: 1st line of device status.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D08DD4C0-3A9E-462E-8290-7B636B2576B9}, 257</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Status2">
             <summary>
             <para>Name:     System.Devices.Status2 -- PKEY_Devices_Status2</para>
             <para>Description: 2nd line of device status.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D08DD4C0-3A9E-462E-8290-7B636B2576B9}, 258</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.StorageCapacity">
             <summary>
             <para>Name:     System.Devices.StorageCapacity -- PKEY_Devices_StorageCapacity</para>
             <para>Description: Total storage capacity of the device.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 12</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.StorageFreeSpace">
             <summary>
             <para>Name:     System.Devices.StorageFreeSpace -- PKEY_Devices_StorageFreeSpace</para>
             <para>Description: Total free space of the storage of the device.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 13</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.StorageFreeSpacePercent">
             <summary>
             <para>Name:     System.Devices.StorageFreeSpacePercent -- PKEY_Devices_StorageFreeSpacePercent</para>
             <para>Description: Total free space of the storage of the device as a percentage.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 14</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.TextMessages">
             <summary>
             <para>Name:     System.Devices.TextMessages -- PKEY_Devices_TextMessages</para>
             <para>Description: Number of unread text messages on the device.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Voicemail">
             <summary>
             <para>Name:     System.Devices.Voicemail -- PKEY_Devices_Voicemail</para>
             <para>Description: Status indicator used to indicate if the device has voicemail.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 6</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Notifications">
            <summary>
            Notifications Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Notifications.LowBattery">
             <summary>
             <para>Name:     System.Devices.Notifications.LowBattery -- PKEY_Devices_Notification_LowBattery</para>
             <para>Description: Device Low Battery Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {C4C07F2B-8524-4E66-AE3A-A6235F103BEB}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Notifications.MissedCall">
             <summary>
             <para>Name:     System.Devices.Notifications.MissedCall -- PKEY_Devices_Notification_MissedCall</para>
             <para>Description: Device Missed Call Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {6614EF48-4EFE-4424-9EDA-C79F404EDF3E}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Notifications.NewMessage">
             <summary>
             <para>Name:     System.Devices.Notifications.NewMessage -- PKEY_Devices_Notification_NewMessage</para>
             <para>Description: Device New Message Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {2BE9260A-2012-4742-A555-F41B638B7DCB}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Notifications.NewVoicemail">
             <summary>
             <para>Name:     System.Devices.Notifications.NewVoicemail -- PKEY_Devices_Notification_NewVoicemail</para>
             <para>Description: Device Voicemail Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {59569556-0A08-4212-95B9-FAE2AD6413DB}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Notifications.StorageFull">
             <summary>
             <para>Name:     System.Devices.Notifications.StorageFull -- PKEY_Devices_Notification_StorageFull</para>
             <para>Description: Device Storage Full Notification.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {A0E00EE1-F0C7-4D41-B8E7-26A7BD8D38B0}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Devices.Notifications.StorageFullLinkText">
             <summary>
             <para>Name:     System.Devices.Notifications.StorageFullLinkText -- PKEY_Devices_Notification_StorageFullLinkText</para>
             <para>Description: Link Text for the Device Storage Full Notification.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {A0E00EE1-F0C7-4D41-B8E7-26A7BD8D38B0}, 3</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Notifications">
            <summary>
            Notifications Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Notifications.LowBattery">
             <summary>
             <para>Name:     System.Devices.Notifications.LowBattery -- PKEY_Devices_Notification_LowBattery</para>
             <para>Description: Device Low Battery Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {C4C07F2B-8524-4E66-AE3A-A6235F103BEB}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Notifications.MissedCall">
             <summary>
             <para>Name:     System.Devices.Notifications.MissedCall -- PKEY_Devices_Notification_MissedCall</para>
             <para>Description: Device Missed Call Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {6614EF48-4EFE-4424-9EDA-C79F404EDF3E}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Notifications.NewMessage">
             <summary>
             <para>Name:     System.Devices.Notifications.NewMessage -- PKEY_Devices_Notification_NewMessage</para>
             <para>Description: Device New Message Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {2BE9260A-2012-4742-A555-F41B638B7DCB}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Notifications.NewVoicemail">
             <summary>
             <para>Name:     System.Devices.Notifications.NewVoicemail -- PKEY_Devices_Notification_NewVoicemail</para>
             <para>Description: Device Voicemail Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {59569556-0A08-4212-95B9-FAE2AD6413DB}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Notifications.StorageFull">
             <summary>
             <para>Name:     System.Devices.Notifications.StorageFull -- PKEY_Devices_Notification_StorageFull</para>
             <para>Description: Device Storage Full Notification.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {A0E00EE1-F0C7-4D41-B8E7-26A7BD8D38B0}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Notifications.StorageFullLinkText">
             <summary>
             <para>Name:     System.Devices.Notifications.StorageFullLinkText -- PKEY_Devices_Notification_StorageFullLinkText</para>
             <para>Description: Link Text for the Device Storage Full Notification.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {A0E00EE1-F0C7-4D41-B8E7-26A7BD8D38B0}, 3</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document">
            <summary>
            Document Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.ByteCount">
             <summary>
             <para>Name:     System.Document.ByteCount -- PKEY_Document_ByteCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 4 (PIDDSI_BYTECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.CharacterCount">
             <summary>
             <para>Name:     System.Document.CharacterCount -- PKEY_Document_CharacterCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 16 (PIDSI_CHARCOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.ClientID">
            <summary>
            <para>Name:     System.Document.ClientID -- PKEY_Document_ClientID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {276D7BB0-5B34-4FB0-AA4B-158ED12A1809}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.Contributor">
            <summary>
            <para>Name:     System.Document.Contributor -- PKEY_Document_Contributor</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {F334115E-DA1B-4509-9B3D-119504DC7ABB}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.DateCreated">
             <summary>
             <para>Name:     System.Document.DateCreated -- PKEY_Document_DateCreated</para>
             <para>Description: This property is stored in the document, not obtained from the file system.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 12 (PIDSI_CREATE_DTM)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.DatePrinted">
             <summary>
             <para>Name:     System.Document.DatePrinted -- PKEY_Document_DatePrinted</para>
             <para>Description: Legacy name: "DocLastPrinted".
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 11 (PIDSI_LASTPRINTED)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.DateSaved">
             <summary>
             <para>Name:     System.Document.DateSaved -- PKEY_Document_DateSaved</para>
             <para>Description: Legacy name: "DocLastSavedTm".
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 13 (PIDSI_LASTSAVE_DTM)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.Division">
            <summary>
            <para>Name:     System.Document.Division -- PKEY_Document_Division</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {1E005EE6-BF27-428B-B01C-79676ACD2870}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.DocumentID">
            <summary>
            <para>Name:     System.Document.DocumentID -- PKEY_Document_DocumentID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E08805C8-E395-40DF-80D2-54F0D6C43154}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.HiddenSlideCount">
             <summary>
             <para>Name:     System.Document.HiddenSlideCount -- PKEY_Document_HiddenSlideCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 9 (PIDDSI_HIDDENCOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.LastAuthor">
             <summary>
             <para>Name:     System.Document.LastAuthor -- PKEY_Document_LastAuthor</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 8 (PIDSI_LASTAUTHOR)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.LineCount">
             <summary>
             <para>Name:     System.Document.LineCount -- PKEY_Document_LineCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 5 (PIDDSI_LINECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.Manager">
             <summary>
             <para>Name:     System.Document.Manager -- PKEY_Document_Manager</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 14 (PIDDSI_MANAGER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.MultimediaClipCount">
             <summary>
             <para>Name:     System.Document.MultimediaClipCount -- PKEY_Document_MultimediaClipCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 10 (PIDDSI_MMCLIPCOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.NoteCount">
             <summary>
             <para>Name:     System.Document.NoteCount -- PKEY_Document_NoteCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 8 (PIDDSI_NOTECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.PageCount">
             <summary>
             <para>Name:     System.Document.PageCount -- PKEY_Document_PageCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 14 (PIDSI_PAGECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.ParagraphCount">
             <summary>
             <para>Name:     System.Document.ParagraphCount -- PKEY_Document_ParagraphCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 6 (PIDDSI_PARCOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.PresentationFormat">
             <summary>
             <para>Name:     System.Document.PresentationFormat -- PKEY_Document_PresentationFormat</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 3 (PIDDSI_PRESFORMAT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.RevisionNumber">
             <summary>
             <para>Name:     System.Document.RevisionNumber -- PKEY_Document_RevisionNumber</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 9 (PIDSI_REVNUMBER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.Security">
             <summary>
             <para>Name:     System.Document.Security -- PKEY_Document_Security</para>
             <para>Description: Access control information, from SummaryInfo propset
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 19</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.SlideCount">
             <summary>
             <para>Name:     System.Document.SlideCount -- PKEY_Document_SlideCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 7 (PIDDSI_SLIDECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.Template">
             <summary>
             <para>Name:     System.Document.Template -- PKEY_Document_Template</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 7 (PIDSI_TEMPLATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.TotalEditingTime">
             <summary>
             <para>Name:     System.Document.TotalEditingTime -- PKEY_Document_TotalEditingTime</para>
             <para>Description: 100ns units, not milliseconds. VT_FILETIME for IPropertySetStorage handlers (legacy)
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 10 (PIDSI_EDITTIME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.Version">
            <summary>
            <para>Name:     System.Document.Version -- PKEY_Document_Version</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 29</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Document.WordCount">
             <summary>
             <para>Name:     System.Document.WordCount -- PKEY_Document_WordCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 15 (PIDSI_WORDCOUNT)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DRM">
            <summary>
            DRM Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DRM.DatePlayExpires">
             <summary>
             <para>Name:     System.DRM.DatePlayExpires -- PKEY_DRM_DatePlayExpires</para>
             <para>Description: Indicates when play expires for digital rights management.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_DRM) {AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED}, 6 (PIDDRSI_PLAYEXPIRES)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DRM.DatePlayStarts">
             <summary>
             <para>Name:     System.DRM.DatePlayStarts -- PKEY_DRM_DatePlayStarts</para>
             <para>Description: Indicates when play starts for digital rights management.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_DRM) {AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED}, 5 (PIDDRSI_PLAYSTARTS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DRM.Description">
             <summary>
             <para>Name:     System.DRM.Description -- PKEY_DRM_Description</para>
             <para>Description: Displays the description for digital rights management.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_DRM) {AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED}, 3 (PIDDRSI_DESCRIPTION)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DRM.IsProtected">
             <summary>
             <para>Name:     System.DRM.IsProtected -- PKEY_DRM_IsProtected</para>
             <para>Description: 
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: (FMTID_DRM) {AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED}, 2 (PIDDRSI_PROTECTED)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.DRM.PlayCount">
             <summary>
             <para>Name:     System.DRM.PlayCount -- PKEY_DRM_PlayCount</para>
             <para>Description: Indicates the play count for digital rights management.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_DRM) {AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED}, 4 (PIDDRSI_PLAYCOUNT)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS">
            <summary>
            GPS Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.Altitude">
             <summary>
             <para>Name:     System.GPS.Altitude -- PKEY_GPS_Altitude</para>
             <para>Description: Indicates the altitude based on the reference in PKEY_GPS_AltitudeRef.  Calculated from PKEY_GPS_AltitudeNumerator and 
            PKEY_GPS_AltitudeDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {827EDB4F-5B73-44A7-891D-FDFFABEA35CA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.AltitudeDenominator">
             <summary>
             <para>Name:     System.GPS.AltitudeDenominator -- PKEY_GPS_AltitudeDenominator</para>
             <para>Description: Denominator of PKEY_GPS_Altitude
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {78342DCB-E358-4145-AE9A-6BFE4E0F9F51}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.AltitudeNumerator">
             <summary>
             <para>Name:     System.GPS.AltitudeNumerator -- PKEY_GPS_AltitudeNumerator</para>
             <para>Description: Numerator of PKEY_GPS_Altitude
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {2DAD1EB7-816D-40D3-9EC3-C9773BE2AADE}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.AltitudeRef">
             <summary>
             <para>Name:     System.GPS.AltitudeRef -- PKEY_GPS_AltitudeRef</para>
             <para>Description: Indicates the reference for the altitude property. (eg: above sea level, below sea level, absolute value)
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {46AC629D-75EA-4515-867F-6DC4321C5844}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.AreaInformation">
             <summary>
             <para>Name:     System.GPS.AreaInformation -- PKEY_GPS_AreaInformation</para>
             <para>Description: Represents the name of the GPS area
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {972E333E-AC7E-49F1-8ADF-A70D07A9BCAB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.Date">
             <summary>
             <para>Name:     System.GPS.Date -- PKEY_GPS_Date</para>
             <para>Description: Date and time of the GPS record
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {3602C812-0F3B-45F0-85AD-603468D69423}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestBearing">
             <summary>
             <para>Name:     System.GPS.DestBearing -- PKEY_GPS_DestBearing</para>
             <para>Description: Indicates the bearing to the destination point.  Calculated from PKEY_GPS_DestBearingNumerator and 
            PKEY_GPS_DestBearingDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {C66D4B3C-E888-47CC-B99F-9DCA3EE34DEA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestBearingDenominator">
             <summary>
             <para>Name:     System.GPS.DestBearingDenominator -- PKEY_GPS_DestBearingDenominator</para>
             <para>Description: Denominator of PKEY_GPS_DestBearing
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {7ABCF4F8-7C3F-4988-AC91-8D2C2E97ECA5}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestBearingNumerator">
             <summary>
             <para>Name:     System.GPS.DestBearingNumerator -- PKEY_GPS_DestBearingNumerator</para>
             <para>Description: Numerator of PKEY_GPS_DestBearing
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {BA3B1DA9-86EE-4B5D-A2A4-A271A429F0CF}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestBearingRef">
             <summary>
             <para>Name:     System.GPS.DestBearingRef -- PKEY_GPS_DestBearingRef</para>
             <para>Description: Indicates the reference used for the giving the bearing to the destination point.  (eg: true direction, magnetic direction)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {9AB84393-2A0F-4B75-BB22-7279786977CB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestDistance">
             <summary>
             <para>Name:     System.GPS.DestDistance -- PKEY_GPS_DestDistance</para>
             <para>Description: Indicates the distance to the destination point.  Calculated from PKEY_GPS_DestDistanceNumerator and 
            PKEY_GPS_DestDistanceDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {A93EAE04-6804-4F24-AC81-09B266452118}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestDistanceDenominator">
             <summary>
             <para>Name:     System.GPS.DestDistanceDenominator -- PKEY_GPS_DestDistanceDenominator</para>
             <para>Description: Denominator of PKEY_GPS_DestDistance
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {9BC2C99B-AC71-4127-9D1C-2596D0D7DCB7}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestDistanceNumerator">
             <summary>
             <para>Name:     System.GPS.DestDistanceNumerator -- PKEY_GPS_DestDistanceNumerator</para>
             <para>Description: Numerator of PKEY_GPS_DestDistance
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {2BDA47DA-08C6-4FE1-80BC-A72FC517C5D0}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestDistanceRef">
             <summary>
             <para>Name:     System.GPS.DestDistanceRef -- PKEY_GPS_DestDistanceRef</para>
             <para>Description: Indicates the unit used to express the distance to the destination.  (eg: kilometers, miles, knots)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {ED4DF2D3-8695-450B-856F-F5C1C53ACB66}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestLatitude">
             <summary>
             <para>Name:     System.GPS.DestLatitude -- PKEY_GPS_DestLatitude</para>
             <para>Description: Indicates the latitude of the destination point.  This is an array of three values.  Index 0 is the degrees, index 1 
            is the minutes, index 2 is the seconds.  Each is calculated from the values in PKEY_GPS_DestLatitudeNumerator and 
            PKEY_GPS_DestLatitudeDenominator.
            </para>
             <para>Type:     Multivalue Double -- VT_VECTOR | VT_R8  (For variants: VT_ARRAY | VT_R8)</para>
             <para>FormatID: {9D1D7CC5-5C39-451C-86B3-928E2D18CC47}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestLatitudeDenominator">
             <summary>
             <para>Name:     System.GPS.DestLatitudeDenominator -- PKEY_GPS_DestLatitudeDenominator</para>
             <para>Description: Denominator of PKEY_GPS_DestLatitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {3A372292-7FCA-49A7-99D5-E47BB2D4E7AB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestLatitudeNumerator">
             <summary>
             <para>Name:     System.GPS.DestLatitudeNumerator -- PKEY_GPS_DestLatitudeNumerator</para>
             <para>Description: Numerator of PKEY_GPS_DestLatitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {ECF4B6F6-D5A6-433C-BB92-4076650FC890}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestLatitudeRef">
             <summary>
             <para>Name:     System.GPS.DestLatitudeRef -- PKEY_GPS_DestLatitudeRef</para>
             <para>Description: Indicates whether the latitude destination point is north or south latitude
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {CEA820B9-CE61-4885-A128-005D9087C192}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestLongitude">
             <summary>
             <para>Name:     System.GPS.DestLongitude -- PKEY_GPS_DestLongitude</para>
             <para>Description: Indicates the latitude of the destination point.  This is an array of three values.  Index 0 is the degrees, index 1 
            is the minutes, index 2 is the seconds.  Each is calculated from the values in PKEY_GPS_DestLongitudeNumerator and 
            PKEY_GPS_DestLongitudeDenominator.
            </para>
             <para>Type:     Multivalue Double -- VT_VECTOR | VT_R8  (For variants: VT_ARRAY | VT_R8)</para>
             <para>FormatID: {47A96261-CB4C-4807-8AD3-40B9D9DBC6BC}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestLongitudeDenominator">
             <summary>
             <para>Name:     System.GPS.DestLongitudeDenominator -- PKEY_GPS_DestLongitudeDenominator</para>
             <para>Description: Denominator of PKEY_GPS_DestLongitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {425D69E5-48AD-4900-8D80-6EB6B8D0AC86}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestLongitudeNumerator">
             <summary>
             <para>Name:     System.GPS.DestLongitudeNumerator -- PKEY_GPS_DestLongitudeNumerator</para>
             <para>Description: Numerator of PKEY_GPS_DestLongitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {A3250282-FB6D-48D5-9A89-DBCACE75CCCF}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DestLongitudeRef">
             <summary>
             <para>Name:     System.GPS.DestLongitudeRef -- PKEY_GPS_DestLongitudeRef</para>
             <para>Description: Indicates whether the longitude destination point is east or west longitude
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {182C1EA6-7C1C-4083-AB4B-AC6C9F4ED128}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.Differential">
             <summary>
             <para>Name:     System.GPS.Differential -- PKEY_GPS_Differential</para>
             <para>Description: Indicates whether differential correction was applied to the GPS receiver
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {AAF4EE25-BD3B-4DD7-BFC4-47F77BB00F6D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DOP">
             <summary>
             <para>Name:     System.GPS.DOP -- PKEY_GPS_DOP</para>
             <para>Description: Indicates the GPS DOP (data degree of precision).  Calculated from PKEY_GPS_DOPNumerator and PKEY_GPS_DOPDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {0CF8FB02-1837-42F1-A697-A7017AA289B9}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DOPDenominator">
             <summary>
             <para>Name:     System.GPS.DOPDenominator -- PKEY_GPS_DOPDenominator</para>
             <para>Description: Denominator of PKEY_GPS_DOP
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {A0BE94C5-50BA-487B-BD35-0654BE8881ED}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.DOPNumerator">
             <summary>
             <para>Name:     System.GPS.DOPNumerator -- PKEY_GPS_DOPNumerator</para>
             <para>Description: Numerator of PKEY_GPS_DOP
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {47166B16-364F-4AA0-9F31-E2AB3DF449C3}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.ImgDirection">
             <summary>
             <para>Name:     System.GPS.ImgDirection -- PKEY_GPS_ImgDirection</para>
             <para>Description: Indicates direction of the image when it was captured.  Calculated from PKEY_GPS_ImgDirectionNumerator and 
            PKEY_GPS_ImgDirectionDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {16473C91-D017-4ED9-BA4D-B6BAA55DBCF8}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.ImgDirectionDenominator">
             <summary>
             <para>Name:     System.GPS.ImgDirectionDenominator -- PKEY_GPS_ImgDirectionDenominator</para>
             <para>Description: Denominator of PKEY_GPS_ImgDirection
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {10B24595-41A2-4E20-93C2-5761C1395F32}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.ImgDirectionNumerator">
             <summary>
             <para>Name:     System.GPS.ImgDirectionNumerator -- PKEY_GPS_ImgDirectionNumerator</para>
             <para>Description: Numerator of PKEY_GPS_ImgDirection
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {DC5877C7-225F-45F7-BAC7-E81334B6130A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.ImgDirectionRef">
             <summary>
             <para>Name:     System.GPS.ImgDirectionRef -- PKEY_GPS_ImgDirectionRef</para>
             <para>Description: Indicates reference for giving the direction of the image when it was captured.  (eg: true direction, magnetic direction)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A4AAA5B7-1AD0-445F-811A-0F8F6E67F6B5}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.Latitude">
             <summary>
             <para>Name:     System.GPS.Latitude -- PKEY_GPS_Latitude</para>
             <para>Description: Indicates the latitude.  This is an array of three values.  Index 0 is the degrees, index 1 is the minutes, index 2 
            is the seconds.  Each is calculated from the values in PKEY_GPS_LatitudeNumerator and PKEY_GPS_LatitudeDenominator.
            </para>
             <para>Type:     Multivalue Double -- VT_VECTOR | VT_R8  (For variants: VT_ARRAY | VT_R8)</para>
             <para>FormatID: {8727CFFF-4868-4EC6-AD5B-81B98521D1AB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.LatitudeDenominator">
             <summary>
             <para>Name:     System.GPS.LatitudeDenominator -- PKEY_GPS_LatitudeDenominator</para>
             <para>Description: Denominator of PKEY_GPS_Latitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {16E634EE-2BFF-497B-BD8A-4341AD39EEB9}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.LatitudeNumerator">
             <summary>
             <para>Name:     System.GPS.LatitudeNumerator -- PKEY_GPS_LatitudeNumerator</para>
             <para>Description: Numerator of PKEY_GPS_Latitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {7DDAAAD1-CCC8-41AE-B750-B2CB8031AEA2}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.LatitudeRef">
             <summary>
             <para>Name:     System.GPS.LatitudeRef -- PKEY_GPS_LatitudeRef</para>
             <para>Description: Indicates whether latitude is north or south latitude 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {029C0252-5B86-46C7-ACA0-2769FFC8E3D4}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.Longitude">
             <summary>
             <para>Name:     System.GPS.Longitude -- PKEY_GPS_Longitude</para>
             <para>Description: Indicates the longitude.  This is an array of three values.  Index 0 is the degrees, index 1 is the minutes, index 2 
            is the seconds.  Each is calculated from the values in PKEY_GPS_LongitudeNumerator and PKEY_GPS_LongitudeDenominator.
            </para>
             <para>Type:     Multivalue Double -- VT_VECTOR | VT_R8  (For variants: VT_ARRAY | VT_R8)</para>
             <para>FormatID: {C4C4DBB2-B593-466B-BBDA-D03D27D5E43A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.LongitudeDenominator">
             <summary>
             <para>Name:     System.GPS.LongitudeDenominator -- PKEY_GPS_LongitudeDenominator</para>
             <para>Description: Denominator of PKEY_GPS_Longitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {BE6E176C-4534-4D2C-ACE5-31DEDAC1606B}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.LongitudeNumerator">
             <summary>
             <para>Name:     System.GPS.LongitudeNumerator -- PKEY_GPS_LongitudeNumerator</para>
             <para>Description: Numerator of PKEY_GPS_Longitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {02B0F689-A914-4E45-821D-1DDA452ED2C4}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.LongitudeRef">
             <summary>
             <para>Name:     System.GPS.LongitudeRef -- PKEY_GPS_LongitudeRef</para>
             <para>Description: Indicates whether longitude is east or west longitude
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {33DCF22B-28D5-464C-8035-1EE9EFD25278}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.MapDatum">
             <summary>
             <para>Name:     System.GPS.MapDatum -- PKEY_GPS_MapDatum</para>
             <para>Description: Indicates the geodetic survey data used by the GPS receiver
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {2CA2DAE6-EDDC-407D-BEF1-773942ABFA95}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.MeasureMode">
             <summary>
             <para>Name:     System.GPS.MeasureMode -- PKEY_GPS_MeasureMode</para>
             <para>Description: Indicates the GPS measurement mode.  (eg: 2-dimensional, 3-dimensional)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A015ED5D-AAEA-4D58-8A86-3C586920EA0B}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.ProcessingMethod">
             <summary>
             <para>Name:     System.GPS.ProcessingMethod -- PKEY_GPS_ProcessingMethod</para>
             <para>Description: Indicates the name of the method used for location finding
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {59D49E61-840F-4AA9-A939-E2099B7F6399}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.Satellites">
             <summary>
             <para>Name:     System.GPS.Satellites -- PKEY_GPS_Satellites</para>
             <para>Description: Indicates the GPS satellites used for measurements
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {467EE575-1F25-4557-AD4E-B8B58B0D9C15}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.Speed">
             <summary>
             <para>Name:     System.GPS.Speed -- PKEY_GPS_Speed</para>
             <para>Description: Indicates the speed of the GPS receiver movement.  Calculated from PKEY_GPS_SpeedNumerator and 
            PKEY_GPS_SpeedDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {DA5D0862-6E76-4E1B-BABD-70021BD25494}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.SpeedDenominator">
             <summary>
             <para>Name:     System.GPS.SpeedDenominator -- PKEY_GPS_SpeedDenominator</para>
             <para>Description: Denominator of PKEY_GPS_Speed
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {7D122D5A-AE5E-4335-8841-D71E7CE72F53}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.SpeedNumerator">
             <summary>
             <para>Name:     System.GPS.SpeedNumerator -- PKEY_GPS_SpeedNumerator</para>
             <para>Description: Numerator of PKEY_GPS_Speed
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {ACC9CE3D-C213-4942-8B48-6D0820F21C6D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.SpeedRef">
             <summary>
             <para>Name:     System.GPS.SpeedRef -- PKEY_GPS_SpeedRef</para>
             <para>Description: Indicates the unit used to express the speed of the GPS receiver movement.  (eg: kilometers per hour, 
            miles per hour, knots).
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {ECF7F4C9-544F-4D6D-9D98-8AD79ADAF453}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.Status">
             <summary>
             <para>Name:     System.GPS.Status -- PKEY_GPS_Status</para>
             <para>Description: Indicates the status of the GPS receiver when the image was recorded.  (eg: measurement in progress, 
            measurement interoperability).
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {125491F4-818F-46B2-91B5-D537753617B2}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.Track">
             <summary>
             <para>Name:     System.GPS.Track -- PKEY_GPS_Track</para>
             <para>Description: Indicates the direction of the GPS receiver movement.  Calculated from PKEY_GPS_TrackNumerator and 
            PKEY_GPS_TrackDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {76C09943-7C33-49E3-9E7E-CDBA872CFADA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.TrackDenominator">
             <summary>
             <para>Name:     System.GPS.TrackDenominator -- PKEY_GPS_TrackDenominator</para>
             <para>Description: Denominator of PKEY_GPS_Track
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {C8D1920C-01F6-40C0-AC86-2F3A4AD00770}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.TrackNumerator">
             <summary>
             <para>Name:     System.GPS.TrackNumerator -- PKEY_GPS_TrackNumerator</para>
             <para>Description: Numerator of PKEY_GPS_Track
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {702926F4-44A6-43E1-AE71-45627116893B}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.TrackRef">
             <summary>
             <para>Name:     System.GPS.TrackRef -- PKEY_GPS_TrackRef</para>
             <para>Description: Indicates reference for the direction of the GPS receiver movement.  (eg: true direction, magnetic direction)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {35DBE6FE-44C3-4400-AAAE-D2C799C407E8}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.GPS.VersionID">
             <summary>
             <para>Name:     System.GPS.VersionID -- PKEY_GPS_VersionID</para>
             <para>Description: Indicates the version of the GPS information
            </para>
             <para>Type:     Buffer -- VT_VECTOR | VT_UI1  (For variants: VT_ARRAY | VT_UI1)</para>
             <para>FormatID: {22704DA4-C6B2-4A99-8E56-F16DF8C92599}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Identity">
            <summary>
            Identity Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Identity.Blob">
             <summary>
             <para>Name:     System.Identity.Blob -- PKEY_Identity_Blob</para>
             <para>Description: Blob used to import/export identities
            </para>
             <para>Type:     Blob -- VT_BLOB</para>
             <para>FormatID: {8C3B93A4-BAED-1A83-9A32-102EE313F6EB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Identity.DisplayName">
             <summary>
             <para>Name:     System.Identity.DisplayName -- PKEY_Identity_DisplayName</para>
             <para>Description: Display Name
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {7D683FC9-D155-45A8-BB1F-89D19BCB792F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Identity.IsMeIdentity">
             <summary>
             <para>Name:     System.Identity.IsMeIdentity -- PKEY_Identity_IsMeIdentity</para>
             <para>Description: Is it Me Identity
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {A4108708-09DF-4377-9DFC-6D99986D5A67}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Identity.PrimaryEmailAddress">
             <summary>
             <para>Name:     System.Identity.PrimaryEmailAddress -- PKEY_Identity_PrimaryEmailAddress</para>
             <para>Description: Primary Email Address
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {FCC16823-BAED-4F24-9B32-A0982117F7FA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Identity.ProviderID">
             <summary>
             <para>Name:     System.Identity.ProviderID -- PKEY_Identity_ProviderID</para>
             <para>Description: Provider ID
            </para>
             <para>Type:     Guid -- VT_CLSID</para>
             <para>FormatID: {74A7DE49-FA11-4D3D-A006-DB7E08675916}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Identity.UniqueID">
             <summary>
             <para>Name:     System.Identity.UniqueID -- PKEY_Identity_UniqueID</para>
             <para>Description: Unique ID
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E55FC3B0-2B60-4220-918E-B21E8BF16016}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Identity.UserName">
             <summary>
             <para>Name:     System.Identity.UserName -- PKEY_Identity_UserName</para>
             <para>Description: Identity User Name
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C4322503-78CA-49C6-9ACC-A68E2AFD7B6B}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IdentityProvider">
            <summary>
            IdentityProvider Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IdentityProvider.Name">
             <summary>
             <para>Name:     System.IdentityProvider.Name -- PKEY_IdentityProvider_Name</para>
             <para>Description: Identity Provider Name
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {B96EFF7B-35CA-4A35-8607-29E3A54C46EA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.IdentityProvider.Picture">
             <summary>
             <para>Name:     System.IdentityProvider.Picture -- PKEY_IdentityProvider_Picture</para>
             <para>Description: Picture for the Identity Provider
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {2425166F-5642-4864-992F-98FD98F294C3}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image">
            <summary>
            Image Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.BitDepth">
             <summary>
             <para>Name:     System.Image.BitDepth -- PKEY_Image_BitDepth</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 7 (PIDISI_BITDEPTH)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.ColorSpace">
             <summary>
             <para>Name:     System.Image.ColorSpace -- PKEY_Image_ColorSpace</para>
             <para>Description: PropertyTagExifColorSpace
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 40961</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.CompressedBitsPerPixel">
             <summary>
             <para>Name:     System.Image.CompressedBitsPerPixel -- PKEY_Image_CompressedBitsPerPixel</para>
             <para>Description: Calculated from PKEY_Image_CompressedBitsPerPixelNumerator and PKEY_Image_CompressedBitsPerPixelDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {364B6FA9-37AB-482A-BE2B-AE02F60D4318}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.CompressedBitsPerPixelDenominator">
             <summary>
             <para>Name:     System.Image.CompressedBitsPerPixelDenominator -- PKEY_Image_CompressedBitsPerPixelDenominator</para>
             <para>Description: Denominator of PKEY_Image_CompressedBitsPerPixel.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {1F8844E1-24AD-4508-9DFD-5326A415CE02}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.CompressedBitsPerPixelNumerator">
             <summary>
             <para>Name:     System.Image.CompressedBitsPerPixelNumerator -- PKEY_Image_CompressedBitsPerPixelNumerator</para>
             <para>Description: Numerator of PKEY_Image_CompressedBitsPerPixel.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {D21A7148-D32C-4624-8900-277210F79C0F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.Compression">
             <summary>
             <para>Name:     System.Image.Compression -- PKEY_Image_Compression</para>
             <para>Description: Indicates the image compression level.  PropertyTagCompression.
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 259</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.CompressionText">
             <summary>
             <para>Name:     System.Image.CompressionText -- PKEY_Image_CompressionText</para>
             <para>Description: This is the user-friendly form of System.Image.Compression.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {3F08E66F-2F44-4BB9-A682-AC35D2562322}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.Dimensions">
             <summary>
             <para>Name:     System.Image.Dimensions -- PKEY_Image_Dimensions</para>
             <para>Description: Indicates the dimensions of the image.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 13 (PIDISI_DIMENSIONS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.HorizontalResolution">
             <summary>
             <para>Name:     System.Image.HorizontalResolution -- PKEY_Image_HorizontalResolution</para>
             <para>Description: 
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 5 (PIDISI_RESOLUTIONX)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.HorizontalSize">
             <summary>
             <para>Name:     System.Image.HorizontalSize -- PKEY_Image_HorizontalSize</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 3 (PIDISI_CX)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.ImageID">
            <summary>
            <para>Name:     System.Image.ImageID -- PKEY_Image_ImageID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {10DABE05-32AA-4C29-BF1A-63E2D220587F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.ResolutionUnit">
            <summary>
            <para>Name:     System.Image.ResolutionUnit -- PKEY_Image_ResolutionUnit</para>
            <para>Description: </para>
            <para>Type:     Int16 -- VT_I2</para>
            <para>FormatID: {19B51FA6-1F92-4A5C-AB48-7DF0ABD67444}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.VerticalResolution">
             <summary>
             <para>Name:     System.Image.VerticalResolution -- PKEY_Image_VerticalResolution</para>
             <para>Description: 
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 6 (PIDISI_RESOLUTIONY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Image.VerticalSize">
             <summary>
             <para>Name:     System.Image.VerticalSize -- PKEY_Image_VerticalSize</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 4 (PIDISI_CY)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Journal">
            <summary>
            Journal Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Journal.Contacts">
            <summary>
            <para>Name:     System.Journal.Contacts -- PKEY_Journal_Contacts</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {DEA7C82C-1D89-4A66-9427-A4E3DEBABCB1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Journal.EntryType">
            <summary>
            <para>Name:     System.Journal.EntryType -- PKEY_Journal_EntryType</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {95BEB1FC-326D-4644-B396-CD3ED90E6DDF}, 100</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.LayoutPattern">
            <summary>
            LayoutPattern Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.LayoutPattern.ContentViewModeForBrowse">
             <summary>
             <para>Name:     System.LayoutPattern.ContentViewModeForBrowse -- PKEY_LayoutPattern_ContentViewModeForBrowse</para>
             <para>Description: Specifies the layout pattern that the content view mode should apply for this item in the context of browsing.
            Register the regvalue under the name of "ContentViewModeLayoutPatternForBrowse".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 500</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.LayoutPattern.ContentViewModeForSearch">
             <summary>
             <para>Name:     System.LayoutPattern.ContentViewModeForSearch -- PKEY_LayoutPattern_ContentViewModeForSearch</para>
             <para>Description: Specifies the layout pattern that the content view mode should apply for this item in the context of searching.
            Register the regvalue under the name of "ContentViewModeLayoutPatternForSearch".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 501</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link">
            <summary>
            Link Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link.Arguments">
            <summary>
            <para>Name:     System.Link.Arguments -- PKEY_Link_Arguments</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {436F2667-14E2-4FEB-B30A-146C53B5B674}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link.Comment">
            <summary>
            <para>Name:     System.Link.Comment -- PKEY_Link_Comment</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: (PSGUID_LINK) {B9B4B3FC-2B51-4A42-B5D8-324146AFCF25}, 5</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link.DateVisited">
            <summary>
            <para>Name:     System.Link.DateVisited -- PKEY_Link_DateVisited</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {5CBF2787-48CF-4208-B90E-EE5E5D420294}, 23  (PKEYs relating to URLs.  Used by IE History.)</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link.Description">
            <summary>
            <para>Name:     System.Link.Description -- PKEY_Link_Description</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {5CBF2787-48CF-4208-B90E-EE5E5D420294}, 21  (PKEYs relating to URLs.  Used by IE History.)</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link.Status">
             <summary>
             <para>Name:     System.Link.Status -- PKEY_Link_Status</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (PSGUID_LINK) {B9B4B3FC-2B51-4A42-B5D8-324146AFCF25}, 3 (PID_LINK_TARGET_TYPE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link.TargetExtension">
             <summary>
             <para>Name:     System.Link.TargetExtension -- PKEY_Link_TargetExtension</para>
             <para>Description: The file extension of the link target.  See System.File.Extension
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {7A7D76F4-B630-4BD7-95FF-37CC51A975C9}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link.TargetParsingPath">
             <summary>
             <para>Name:     System.Link.TargetParsingPath -- PKEY_Link_TargetParsingPath</para>
             <para>Description: This is the shell namespace path to the target of the link item.  This path may be passed to 
            SHParseDisplayName to parse the path to the correct shell folder.
            
            If the target item is a file, the value is identical to System.ItemPathDisplay.
            
            If the target item cannot be accessed through the shell namespace, this value is VT_EMPTY.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_LINK) {B9B4B3FC-2B51-4A42-B5D8-324146AFCF25}, 2 (PID_LINK_TARGET)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link.TargetSFGAOFlags">
             <summary>
             <para>Name:     System.Link.TargetSFGAOFlags -- PKEY_Link_TargetSFGAOFlags</para>
             <para>Description: IShellFolder::GetAttributesOf flags for the target of a link, with SFGAO_PKEYSFGAOMASK 
            attributes masked out.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_LINK) {B9B4B3FC-2B51-4A42-B5D8-324146AFCF25}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link.TargetSFGAOFlagsStrings">
             <summary>
             <para>Name:     System.Link.TargetSFGAOFlagsStrings -- PKEY_Link_TargetSFGAOFlagsStrings</para>
             <para>Description: Expresses the SFGAO flags of a link as string values and is used as a query optimization.  See 
            PKEY_Shell_SFGAOFlagsStrings for possible values of this.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D6942081-D53B-443D-AD47-5E059D9CD27A}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Link.TargetUrl">
            <summary>
            <para>Name:     System.Link.TargetUrl -- PKEY_Link_TargetUrl</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {5CBF2787-48CF-4208-B90E-EE5E5D420294}, 2  (PKEYs relating to URLs.  Used by IE History.)</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media">
            <summary>
            Media Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.AuthorUrl">
             <summary>
             <para>Name:     System.Media.AuthorUrl -- PKEY_Media_AuthorUrl</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 32 (PIDMSI_AUTHOR_URL)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.AverageLevel">
            <summary>
            <para>Name:     System.Media.AverageLevel -- PKEY_Media_AverageLevel</para>
            <para>Description: </para>
            <para>Type:     UInt32 -- VT_UI4</para>
            <para>FormatID: {09EDD5B6-B301-43C5-9990-D00302EFFD46}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.ClassPrimaryID">
             <summary>
             <para>Name:     System.Media.ClassPrimaryID -- PKEY_Media_ClassPrimaryID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 13 (PIDMSI_CLASS_PRIMARY_ID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.ClassSecondaryID">
             <summary>
             <para>Name:     System.Media.ClassSecondaryID -- PKEY_Media_ClassSecondaryID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 14 (PIDMSI_CLASS_SECONDARY_ID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.CollectionGroupID">
             <summary>
             <para>Name:     System.Media.CollectionGroupID -- PKEY_Media_CollectionGroupID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 24 (PIDMSI_COLLECTION_GROUP_ID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.CollectionID">
             <summary>
             <para>Name:     System.Media.CollectionID -- PKEY_Media_CollectionID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 25 (PIDMSI_COLLECTION_ID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.ContentDistributor">
             <summary>
             <para>Name:     System.Media.ContentDistributor -- PKEY_Media_ContentDistributor</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 18 (PIDMSI_CONTENTDISTRIBUTOR)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.ContentID">
             <summary>
             <para>Name:     System.Media.ContentID -- PKEY_Media_ContentID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 26 (PIDMSI_CONTENT_ID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.CreatorApplication">
             <summary>
             <para>Name:     System.Media.CreatorApplication -- PKEY_Media_CreatorApplication</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 27 (PIDMSI_TOOL_NAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.CreatorApplicationVersion">
             <summary>
             <para>Name:     System.Media.CreatorApplicationVersion -- PKEY_Media_CreatorApplicationVersion</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 28 (PIDMSI_TOOL_VERSION)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.DateEncoded">
             <summary>
             <para>Name:     System.Media.DateEncoded -- PKEY_Media_DateEncoded</para>
             <para>Description: DateTime is in UTC (in the doc, not file system).
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {2E4B640D-5019-46D8-8881-55414CC5CAA0}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.DateReleased">
            <summary>
            <para>Name:     System.Media.DateReleased -- PKEY_Media_DateReleased</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {DE41CC29-6971-4290-B472-F59F2E2F31E2}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.Duration">
             <summary>
             <para>Name:     System.Media.Duration -- PKEY_Media_Duration</para>
             <para>Description: 100ns units, not milliseconds
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 3 (PIDASI_TIMELENGTH)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.DVDID">
             <summary>
             <para>Name:     System.Media.DVDID -- PKEY_Media_DVDID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 15 (PIDMSI_DVDID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.EncodedBy">
             <summary>
             <para>Name:     System.Media.EncodedBy -- PKEY_Media_EncodedBy</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 36 (PIDMSI_ENCODED_BY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.EncodingSettings">
             <summary>
             <para>Name:     System.Media.EncodingSettings -- PKEY_Media_EncodingSettings</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 37 (PIDMSI_ENCODING_SETTINGS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.FrameCount">
             <summary>
             <para>Name:     System.Media.FrameCount -- PKEY_Media_FrameCount</para>
             <para>Description: Indicates the frame count for the image.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 12 (PIDISI_FRAMECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.MCDI">
             <summary>
             <para>Name:     System.Media.MCDI -- PKEY_Media_MCDI</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 16 (PIDMSI_MCDI)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.MetadataContentProvider">
             <summary>
             <para>Name:     System.Media.MetadataContentProvider -- PKEY_Media_MetadataContentProvider</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 17 (PIDMSI_PROVIDER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.Producer">
             <summary>
             <para>Name:     System.Media.Producer -- PKEY_Media_Producer</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 22 (PIDMSI_PRODUCER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.PromotionUrl">
             <summary>
             <para>Name:     System.Media.PromotionUrl -- PKEY_Media_PromotionUrl</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 33 (PIDMSI_PROMOTION_URL)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.ProtectionType">
             <summary>
             <para>Name:     System.Media.ProtectionType -- PKEY_Media_ProtectionType</para>
             <para>Description: If media is protected, how is it protected?
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 38</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.ProviderRating">
             <summary>
             <para>Name:     System.Media.ProviderRating -- PKEY_Media_ProviderRating</para>
             <para>Description: Rating (0 - 99) supplied by metadata provider
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 39</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.ProviderStyle">
             <summary>
             <para>Name:     System.Media.ProviderStyle -- PKEY_Media_ProviderStyle</para>
             <para>Description: Style of music or video, supplied by metadata provider
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 40</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.Publisher">
             <summary>
             <para>Name:     System.Media.Publisher -- PKEY_Media_Publisher</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 30 (PIDMSI_PUBLISHER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.SubscriptionContentId">
            <summary>
            <para>Name:     System.Media.SubscriptionContentId -- PKEY_Media_SubscriptionContentId</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9AEBAE7A-9644-487D-A92C-657585ED751A}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.SubTitle">
             <summary>
             <para>Name:     System.Media.SubTitle -- PKEY_Media_SubTitle</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 38 (PIDSI_MUSIC_SUB_TITLE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.UniqueFileIdentifier">
             <summary>
             <para>Name:     System.Media.UniqueFileIdentifier -- PKEY_Media_UniqueFileIdentifier</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 35 (PIDMSI_UNIQUE_FILE_IDENTIFIER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.UserNoAutoInfo">
             <summary>
             <para>Name:     System.Media.UserNoAutoInfo -- PKEY_Media_UserNoAutoInfo</para>
             <para>Description: If true, do NOT alter this file's metadata. Set by user.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 41</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.UserWebUrl">
             <summary>
             <para>Name:     System.Media.UserWebUrl -- PKEY_Media_UserWebUrl</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 34 (PIDMSI_USER_WEB_URL)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.Writer">
             <summary>
             <para>Name:     System.Media.Writer -- PKEY_Media_Writer</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 23 (PIDMSI_WRITER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Media.Year">
             <summary>
             <para>Name:     System.Media.Year -- PKEY_Media_Year</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 5 (PIDSI_MUSIC_YEAR)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message">
            <summary>
            Message Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.AttachmentContents">
            <summary>
            <para>Name:     System.Message.AttachmentContents -- PKEY_Message_AttachmentContents</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {3143BF7C-80A8-4854-8880-E2E40189BDD0}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.AttachmentNames">
             <summary>
             <para>Name:     System.Message.AttachmentNames -- PKEY_Message_AttachmentNames</para>
             <para>Description: The names of the attachments in a message
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 21</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.BccAddress">
             <summary>
             <para>Name:     System.Message.BccAddress -- PKEY_Message_BccAddress</para>
             <para>Description: Addresses in Bcc: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.BccName">
             <summary>
             <para>Name:     System.Message.BccName -- PKEY_Message_BccName</para>
             <para>Description: person names in Bcc: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.CcAddress">
             <summary>
             <para>Name:     System.Message.CcAddress -- PKEY_Message_CcAddress</para>
             <para>Description: Addresses in Cc: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.CcName">
             <summary>
             <para>Name:     System.Message.CcName -- PKEY_Message_CcName</para>
             <para>Description: person names in Cc: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.ConversationID">
            <summary>
            <para>Name:     System.Message.ConversationID -- PKEY_Message_ConversationID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {DC8F80BD-AF1E-4289-85B6-3DFC1B493992}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.ConversationIndex">
             <summary>
             <para>Name:     System.Message.ConversationIndex -- PKEY_Message_ConversationIndex</para>
             <para>Description: 
            </para>
             <para>Type:     Buffer -- VT_VECTOR | VT_UI1  (For variants: VT_ARRAY | VT_UI1)</para>
             <para>FormatID: {DC8F80BD-AF1E-4289-85B6-3DFC1B493992}, 101</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.DateReceived">
             <summary>
             <para>Name:     System.Message.DateReceived -- PKEY_Message_DateReceived</para>
             <para>Description: Date and Time communication was received
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 20</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.DateSent">
             <summary>
             <para>Name:     System.Message.DateSent -- PKEY_Message_DateSent</para>
             <para>Description: Date and Time communication was sent
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 19</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.Flags">
             <summary>
             <para>Name:     System.Message.Flags -- PKEY_Message_Flags</para>
             <para>Description: These are flags associated with email messages to know if a read receipt is pending, etc.
            The values stored here by Outlook are defined for PR_MESSAGE_FLAGS on MSDN. 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {A82D9EE7-CA67-4312-965E-226BCEA85023}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.FromAddress">
            <summary>
            <para>Name:     System.Message.FromAddress -- PKEY_Message_FromAddress</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 13</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.FromName">
             <summary>
             <para>Name:     System.Message.FromName -- PKEY_Message_FromName</para>
             <para>Description: Address in from field as person name
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 14</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.HasAttachments">
             <summary>
             <para>Name:     System.Message.HasAttachments -- PKEY_Message_HasAttachments</para>
             <para>Description: 
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {9C1FCF74-2D97-41BA-B4AE-CB2E3661A6E4}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.IsFwdOrReply">
            <summary>
            <para>Name:     System.Message.IsFwdOrReply -- PKEY_Message_IsFwdOrReply</para>
            <para>Description: </para>
            <para>Type:     Int32 -- VT_I4</para>
            <para>FormatID: {9A9BC088-4F6D-469E-9919-E705412040F9}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.MessageClass">
             <summary>
             <para>Name:     System.Message.MessageClass -- PKEY_Message_MessageClass</para>
             <para>Description: What type of outlook msg this is (meeting, task, mail, etc.)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {CD9ED458-08CE-418F-A70E-F912C7BB9C5C}, 103</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.ProofInProgress">
             <summary>
             <para>Name:     System.Message.ProofInProgress -- PKEY_Message_ProofInProgress</para>
             <para>Description: This property will be true if the message junk email proofing is still in progress.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {9098F33C-9A7D-48A8-8DE5-2E1227A64E91}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.SenderAddress">
            <summary>
            <para>Name:     System.Message.SenderAddress -- PKEY_Message_SenderAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {0BE1C8E7-1981-4676-AE14-FDD78F05A6E7}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.SenderName">
            <summary>
            <para>Name:     System.Message.SenderName -- PKEY_Message_SenderName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {0DA41CFA-D224-4A18-AE2F-596158DB4B3A}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.Store">
             <summary>
             <para>Name:     System.Message.Store -- PKEY_Message_Store</para>
             <para>Description: The store (aka protocol handler) FILE, MAIL, OUTLOOKEXPRESS
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 15</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.ToAddress">
             <summary>
             <para>Name:     System.Message.ToAddress -- PKEY_Message_ToAddress</para>
             <para>Description: Addresses in To: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 16</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.ToDoFlags">
             <summary>
             <para>Name:     System.Message.ToDoFlags -- PKEY_Message_ToDoFlags</para>
             <para>Description: Flags associated with a message flagged to know if it's still active, if it was custom flagged, etc.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {1F856A9F-6900-4ABA-9505-2D5F1B4D66CB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.ToDoTitle">
            <summary>
            <para>Name:     System.Message.ToDoTitle -- PKEY_Message_ToDoTitle</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {BCCC8A3C-8CEF-42E5-9B1C-C69079398BC7}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Message.ToName">
             <summary>
             <para>Name:     System.Message.ToName -- PKEY_Message_ToName</para>
             <para>Description: Person names in To: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 17</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music">
            <summary>
            Music Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.AlbumArtist">
             <summary>
             <para>Name:     System.Music.AlbumArtist -- PKEY_Music_AlbumArtist</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 13 (PIDSI_MUSIC_ALBUM_ARTIST)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.AlbumID">
             <summary>
             <para>Name:     System.Music.AlbumID -- PKEY_Music_AlbumID</para>
             <para>Description: Concatenation of System.Music.AlbumArtist and System.Music.AlbumTitle, suitable for indexing and display.
            Used to differentiate albums with the same title from different artists.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.AlbumTitle">
             <summary>
             <para>Name:     System.Music.AlbumTitle -- PKEY_Music_AlbumTitle</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 4 (PIDSI_MUSIC_ALBUM)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.Artist">
             <summary>
             <para>Name:     System.Music.Artist -- PKEY_Music_Artist</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 2 (PIDSI_MUSIC_ARTIST)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.BeatsPerMinute">
             <summary>
             <para>Name:     System.Music.BeatsPerMinute -- PKEY_Music_BeatsPerMinute</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 35 (PIDSI_MUSIC_BEATS_PER_MINUTE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.Composer">
             <summary>
             <para>Name:     System.Music.Composer -- PKEY_Music_Composer</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 19 (PIDMSI_COMPOSER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.Conductor">
             <summary>
             <para>Name:     System.Music.Conductor -- PKEY_Music_Conductor</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 36 (PIDSI_MUSIC_CONDUCTOR)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.ContentGroupDescription">
             <summary>
             <para>Name:     System.Music.ContentGroupDescription -- PKEY_Music_ContentGroupDescription</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 33 (PIDSI_MUSIC_CONTENT_GROUP_DESCRIPTION)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.DisplayArtist">
             <summary>
             <para>Name:     System.Music.DisplayArtist -- PKEY_Music_DisplayArtist</para>
             <para>Description: This property returns the best representation of Album Artist for a given music file
            based upon AlbumArtist, ContributingArtist and compilation info.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {FD122953-FA93-4EF7-92C3-04C946B2F7C8}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.Genre">
             <summary>
             <para>Name:     System.Music.Genre -- PKEY_Music_Genre</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 11 (PIDSI_MUSIC_GENRE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.InitialKey">
             <summary>
             <para>Name:     System.Music.InitialKey -- PKEY_Music_InitialKey</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 34 (PIDSI_MUSIC_INITIAL_KEY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.IsCompilation">
             <summary>
             <para>Name:     System.Music.IsCompilation -- PKEY_Music_IsCompilation</para>
             <para>Description: Indicates whether the file is part of a compilation.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {C449D5CB-9EA4-4809-82E8-AF9D59DED6D1}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.Lyrics">
             <summary>
             <para>Name:     System.Music.Lyrics -- PKEY_Music_Lyrics</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 12 (PIDSI_MUSIC_LYRICS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.Mood">
             <summary>
             <para>Name:     System.Music.Mood -- PKEY_Music_Mood</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 39 (PIDSI_MUSIC_MOOD)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.PartOfSet">
             <summary>
             <para>Name:     System.Music.PartOfSet -- PKEY_Music_PartOfSet</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 37 (PIDSI_MUSIC_PART_OF_SET)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.Period">
             <summary>
             <para>Name:     System.Music.Period -- PKEY_Music_Period</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 31 (PIDMSI_PERIOD)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.SynchronizedLyrics">
            <summary>
            <para>Name:     System.Music.SynchronizedLyrics -- PKEY_Music_SynchronizedLyrics</para>
            <para>Description: </para>
            <para>Type:     Blob -- VT_BLOB</para>
            <para>FormatID: {6B223B6A-162E-4AA9-B39F-05D678FC6D77}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Music.TrackNumber">
             <summary>
             <para>Name:     System.Music.TrackNumber -- PKEY_Music_TrackNumber</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 7 (PIDSI_MUSIC_TRACK)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Note">
            <summary>
            Note Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Note.Color">
            <summary>
            <para>Name:     System.Note.Color -- PKEY_Note_Color</para>
            <para>Description: </para>
            <para>Type:     UInt16 -- VT_UI2</para>
            <para>FormatID: {4776CAFA-BCE4-4CB1-A23E-265E76D8EB11}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Note.ColorText">
             <summary>
             <para>Name:     System.Note.ColorText -- PKEY_Note_ColorText</para>
             <para>Description: This is the user-friendly form of System.Note.Color.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {46B4E8DE-CDB2-440D-885C-1658EB65B914}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo">
            <summary>
            Photo Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.Aperture">
             <summary>
             <para>Name:     System.Photo.Aperture -- PKEY_Photo_Aperture</para>
             <para>Description: PropertyTagExifAperture.  Calculated from PKEY_Photo_ApertureNumerator and PKEY_Photo_ApertureDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37378</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ApertureDenominator">
             <summary>
             <para>Name:     System.Photo.ApertureDenominator -- PKEY_Photo_ApertureDenominator</para>
             <para>Description: Denominator of PKEY_Photo_Aperture
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {E1A9A38B-6685-46BD-875E-570DC7AD7320}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ApertureNumerator">
             <summary>
             <para>Name:     System.Photo.ApertureNumerator -- PKEY_Photo_ApertureNumerator</para>
             <para>Description: Numerator of PKEY_Photo_Aperture
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {0337ECEC-39FB-4581-A0BD-4C4CC51E9914}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.Brightness">
             <summary>
             <para>Name:     System.Photo.Brightness -- PKEY_Photo_Brightness</para>
             <para>Description: This is the brightness of the photo.
            
            Calculated from PKEY_Photo_BrightnessNumerator and PKEY_Photo_BrightnessDenominator.
            
            The units are "APEX", normally in the range of -99.99 to 99.99. If the numerator of 
            the recorded value is FFFFFFFF.H, "Unknown" should be indicated.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {1A701BF6-478C-4361-83AB-3701BB053C58}, 100 (PropertyTagExifBrightness)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.BrightnessDenominator">
             <summary>
             <para>Name:     System.Photo.BrightnessDenominator -- PKEY_Photo_BrightnessDenominator</para>
             <para>Description: Denominator of PKEY_Photo_Brightness
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {6EBE6946-2321-440A-90F0-C043EFD32476}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.BrightnessNumerator">
             <summary>
             <para>Name:     System.Photo.BrightnessNumerator -- PKEY_Photo_BrightnessNumerator</para>
             <para>Description: Numerator of PKEY_Photo_Brightness
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {9E7D118F-B314-45A0-8CFB-D654B917C9E9}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.CameraManufacturer">
             <summary>
             <para>Name:     System.Photo.CameraManufacturer -- PKEY_Photo_CameraManufacturer</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 271 (PropertyTagEquipMake)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.CameraModel">
             <summary>
             <para>Name:     System.Photo.CameraModel -- PKEY_Photo_CameraModel</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 272 (PropertyTagEquipModel)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.CameraSerialNumber">
             <summary>
             <para>Name:     System.Photo.CameraSerialNumber -- PKEY_Photo_CameraSerialNumber</para>
             <para>Description: Serial number of camera that produced this photo
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 273</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.Contrast">
             <summary>
             <para>Name:     System.Photo.Contrast -- PKEY_Photo_Contrast</para>
             <para>Description: This indicates the direction of contrast processing applied by the camera 
            when the image was shot.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {2A785BA9-8D23-4DED-82E6-60A350C86A10}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ContrastText">
             <summary>
             <para>Name:     System.Photo.ContrastText -- PKEY_Photo_ContrastText</para>
             <para>Description: This is the user-friendly form of System.Photo.Contrast.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {59DDE9F2-5253-40EA-9A8B-479E96C6249A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.DateTaken">
             <summary>
             <para>Name:     System.Photo.DateTaken -- PKEY_Photo_DateTaken</para>
             <para>Description: PropertyTagExifDTOrig
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 36867</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.DigitalZoom">
             <summary>
             <para>Name:     System.Photo.DigitalZoom -- PKEY_Photo_DigitalZoom</para>
             <para>Description: PropertyTagExifDigitalZoom.  Calculated from PKEY_Photo_DigitalZoomNumerator and PKEY_Photo_DigitalZoomDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {F85BF840-A925-4BC2-B0C4-8E36B598679E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.DigitalZoomDenominator">
             <summary>
             <para>Name:     System.Photo.DigitalZoomDenominator -- PKEY_Photo_DigitalZoomDenominator</para>
             <para>Description: Denominator of PKEY_Photo_DigitalZoom
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {745BAF0E-E5C1-4CFB-8A1B-D031A0A52393}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.DigitalZoomNumerator">
             <summary>
             <para>Name:     System.Photo.DigitalZoomNumerator -- PKEY_Photo_DigitalZoomNumerator</para>
             <para>Description: Numerator of PKEY_Photo_DigitalZoom
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {16CBB924-6500-473B-A5BE-F1599BCBE413}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.Event">
             <summary>
             <para>Name:     System.Photo.Event -- PKEY_Photo_Event</para>
             <para>Description: The event at which the photo was taken
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 18248</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.EXIFVersion">
             <summary>
             <para>Name:     System.Photo.EXIFVersion -- PKEY_Photo_EXIFVersion</para>
             <para>Description: The EXIF version.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D35F743A-EB2E-47F2-A286-844132CB1427}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureBias">
             <summary>
             <para>Name:     System.Photo.ExposureBias -- PKEY_Photo_ExposureBias</para>
             <para>Description: PropertyTagExifExposureBias.  Calculated from PKEY_Photo_ExposureBiasNumerator and PKEY_Photo_ExposureBiasDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37380</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureBiasDenominator">
             <summary>
             <para>Name:     System.Photo.ExposureBiasDenominator -- PKEY_Photo_ExposureBiasDenominator</para>
             <para>Description: Denominator of PKEY_Photo_ExposureBias
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {AB205E50-04B7-461C-A18C-2F233836E627}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureBiasNumerator">
             <summary>
             <para>Name:     System.Photo.ExposureBiasNumerator -- PKEY_Photo_ExposureBiasNumerator</para>
             <para>Description: Numerator of PKEY_Photo_ExposureBias
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {738BF284-1D87-420B-92CF-5834BF6EF9ED}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureIndex">
             <summary>
             <para>Name:     System.Photo.ExposureIndex -- PKEY_Photo_ExposureIndex</para>
             <para>Description: PropertyTagExifExposureIndex.  Calculated from PKEY_Photo_ExposureIndexNumerator and PKEY_Photo_ExposureIndexDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {967B5AF8-995A-46ED-9E11-35B3C5B9782D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureIndexDenominator">
             <summary>
             <para>Name:     System.Photo.ExposureIndexDenominator -- PKEY_Photo_ExposureIndexDenominator</para>
             <para>Description: Denominator of PKEY_Photo_ExposureIndex
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {93112F89-C28B-492F-8A9D-4BE2062CEE8A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureIndexNumerator">
             <summary>
             <para>Name:     System.Photo.ExposureIndexNumerator -- PKEY_Photo_ExposureIndexNumerator</para>
             <para>Description: Numerator of PKEY_Photo_ExposureIndex
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {CDEDCF30-8919-44DF-8F4C-4EB2FFDB8D89}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureProgram">
             <summary>
             <para>Name:     System.Photo.ExposureProgram -- PKEY_Photo_ExposureProgram</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 34850 (PropertyTagExifExposureProg)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureProgramText">
             <summary>
             <para>Name:     System.Photo.ExposureProgramText -- PKEY_Photo_ExposureProgramText</para>
             <para>Description: This is the user-friendly form of System.Photo.ExposureProgram.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {FEC690B7-5F30-4646-AE47-4CAAFBA884A3}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureTime">
             <summary>
             <para>Name:     System.Photo.ExposureTime -- PKEY_Photo_ExposureTime</para>
             <para>Description: PropertyTagExifExposureTime.  Calculated from  PKEY_Photo_ExposureTimeNumerator and PKEY_Photo_ExposureTimeDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 33434</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureTimeDenominator">
             <summary>
             <para>Name:     System.Photo.ExposureTimeDenominator -- PKEY_Photo_ExposureTimeDenominator</para>
             <para>Description: Denominator of PKEY_Photo_ExposureTime
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {55E98597-AD16-42E0-B624-21599A199838}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ExposureTimeNumerator">
             <summary>
             <para>Name:     System.Photo.ExposureTimeNumerator -- PKEY_Photo_ExposureTimeNumerator</para>
             <para>Description: Numerator of PKEY_Photo_ExposureTime
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {257E44E2-9031-4323-AC38-85C552871B2E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.Flash">
             <summary>
             <para>Name:     System.Photo.Flash -- PKEY_Photo_Flash</para>
             <para>Description: PropertyTagExifFlash
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37385</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FlashEnergy">
             <summary>
             <para>Name:     System.Photo.FlashEnergy -- PKEY_Photo_FlashEnergy</para>
             <para>Description: PropertyTagExifFlashEnergy.  Calculated from PKEY_Photo_FlashEnergyNumerator and PKEY_Photo_FlashEnergyDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 41483</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FlashEnergyDenominator">
             <summary>
             <para>Name:     System.Photo.FlashEnergyDenominator -- PKEY_Photo_FlashEnergyDenominator</para>
             <para>Description: Denominator of PKEY_Photo_FlashEnergy
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {D7B61C70-6323-49CD-A5FC-C84277162C97}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FlashEnergyNumerator">
             <summary>
             <para>Name:     System.Photo.FlashEnergyNumerator -- PKEY_Photo_FlashEnergyNumerator</para>
             <para>Description: Numerator of PKEY_Photo_FlashEnergy
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {FCAD3D3D-0858-400F-AAA3-2F66CCE2A6BC}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FlashManufacturer">
            <summary>
            <para>Name:     System.Photo.FlashManufacturer -- PKEY_Photo_FlashManufacturer</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {AABAF6C9-E0C5-4719-8585-57B103E584FE}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FlashModel">
            <summary>
            <para>Name:     System.Photo.FlashModel -- PKEY_Photo_FlashModel</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {FE83BB35-4D1A-42E2-916B-06F3E1AF719E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FlashText">
             <summary>
             <para>Name:     System.Photo.FlashText -- PKEY_Photo_FlashText</para>
             <para>Description: This is the user-friendly form of System.Photo.Flash.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6B8B68F6-200B-47EA-8D25-D8050F57339F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FNumber">
             <summary>
             <para>Name:     System.Photo.FNumber -- PKEY_Photo_FNumber</para>
             <para>Description: PropertyTagExifFNumber.  Calculated from PKEY_Photo_FNumberNumerator and PKEY_Photo_FNumberDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 33437</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FNumberDenominator">
             <summary>
             <para>Name:     System.Photo.FNumberDenominator -- PKEY_Photo_FNumberDenominator</para>
             <para>Description: Denominator of PKEY_Photo_FNumber
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {E92A2496-223B-4463-A4E3-30EABBA79D80}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FNumberNumerator">
             <summary>
             <para>Name:     System.Photo.FNumberNumerator -- PKEY_Photo_FNumberNumerator</para>
             <para>Description: Numerator of PKEY_Photo_FNumber
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {1B97738A-FDFC-462F-9D93-1957E08BE90C}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FocalLength">
             <summary>
             <para>Name:     System.Photo.FocalLength -- PKEY_Photo_FocalLength</para>
             <para>Description: PropertyTagExifFocalLength.  Calculated from PKEY_Photo_FocalLengthNumerator and PKEY_Photo_FocalLengthDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37386</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FocalLengthDenominator">
             <summary>
             <para>Name:     System.Photo.FocalLengthDenominator -- PKEY_Photo_FocalLengthDenominator</para>
             <para>Description: Denominator of PKEY_Photo_FocalLength
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {305BC615-DCA1-44A5-9FD4-10C0BA79412E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FocalLengthInFilm">
            <summary>
            <para>Name:     System.Photo.FocalLengthInFilm -- PKEY_Photo_FocalLengthInFilm</para>
            <para>Description: </para>
            <para>Type:     UInt16 -- VT_UI2</para>
            <para>FormatID: {A0E74609-B84D-4F49-B860-462BD9971F98}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FocalLengthNumerator">
             <summary>
             <para>Name:     System.Photo.FocalLengthNumerator -- PKEY_Photo_FocalLengthNumerator</para>
             <para>Description: Numerator of PKEY_Photo_FocalLength
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {776B6B3B-1E3D-4B0C-9A0E-8FBAF2A8492A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FocalPlaneXResolution">
             <summary>
             <para>Name:     System.Photo.FocalPlaneXResolution -- PKEY_Photo_FocalPlaneXResolution</para>
             <para>Description: PropertyTagExifFocalXRes.  Calculated from PKEY_Photo_FocalPlaneXResolutionNumerator and 
            PKEY_Photo_FocalPlaneXResolutionDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {CFC08D97-C6F7-4484-89DD-EBEF4356FE76}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FocalPlaneXResolutionDenominator">
             <summary>
             <para>Name:     System.Photo.FocalPlaneXResolutionDenominator -- PKEY_Photo_FocalPlaneXResolutionDenominator</para>
             <para>Description: Denominator of PKEY_Photo_FocalPlaneXResolution
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {0933F3F5-4786-4F46-A8E8-D64DD37FA521}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FocalPlaneXResolutionNumerator">
             <summary>
             <para>Name:     System.Photo.FocalPlaneXResolutionNumerator -- PKEY_Photo_FocalPlaneXResolutionNumerator</para>
             <para>Description: Numerator of PKEY_Photo_FocalPlaneXResolution
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {DCCB10AF-B4E2-4B88-95F9-031B4D5AB490}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FocalPlaneYResolution">
             <summary>
             <para>Name:     System.Photo.FocalPlaneYResolution -- PKEY_Photo_FocalPlaneYResolution</para>
             <para>Description: PropertyTagExifFocalYRes.  Calculated from PKEY_Photo_FocalPlaneYResolutionNumerator and 
            PKEY_Photo_FocalPlaneYResolutionDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {4FFFE4D0-914F-4AC4-8D6F-C9C61DE169B1}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FocalPlaneYResolutionDenominator">
             <summary>
             <para>Name:     System.Photo.FocalPlaneYResolutionDenominator -- PKEY_Photo_FocalPlaneYResolutionDenominator</para>
             <para>Description: Denominator of PKEY_Photo_FocalPlaneYResolution
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {1D6179A6-A876-4031-B013-3347B2B64DC8}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.FocalPlaneYResolutionNumerator">
             <summary>
             <para>Name:     System.Photo.FocalPlaneYResolutionNumerator -- PKEY_Photo_FocalPlaneYResolutionNumerator</para>
             <para>Description: Numerator of PKEY_Photo_FocalPlaneYResolution
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {A2E541C5-4440-4BA8-867E-75CFC06828CD}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.GainControl">
             <summary>
             <para>Name:     System.Photo.GainControl -- PKEY_Photo_GainControl</para>
             <para>Description: This indicates the degree of overall image gain adjustment.
            
            Calculated from PKEY_Photo_GainControlNumerator and PKEY_Photo_GainControlDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {FA304789-00C7-4D80-904A-1E4DCC7265AA}, 100 (PropertyTagExifGainControl)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.GainControlDenominator">
             <summary>
             <para>Name:     System.Photo.GainControlDenominator -- PKEY_Photo_GainControlDenominator</para>
             <para>Description: Denominator of PKEY_Photo_GainControl
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {42864DFD-9DA4-4F77-BDED-4AAD7B256735}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.GainControlNumerator">
             <summary>
             <para>Name:     System.Photo.GainControlNumerator -- PKEY_Photo_GainControlNumerator</para>
             <para>Description: Numerator of PKEY_Photo_GainControl
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {8E8ECF7C-B7B8-4EB8-A63F-0EE715C96F9E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.GainControlText">
             <summary>
             <para>Name:     System.Photo.GainControlText -- PKEY_Photo_GainControlText</para>
             <para>Description: This is the user-friendly form of System.Photo.GainControl.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C06238B2-0BF9-4279-A723-25856715CB9D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ISOSpeed">
             <summary>
             <para>Name:     System.Photo.ISOSpeed -- PKEY_Photo_ISOSpeed</para>
             <para>Description: PropertyTagExifISOSpeed
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 34855</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.LensManufacturer">
            <summary>
            <para>Name:     System.Photo.LensManufacturer -- PKEY_Photo_LensManufacturer</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E6DDCAF7-29C5-4F0A-9A68-D19412EC7090}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.LensModel">
            <summary>
            <para>Name:     System.Photo.LensModel -- PKEY_Photo_LensModel</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E1277516-2B5F-4869-89B1-2E585BD38B7A}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.LightSource">
             <summary>
             <para>Name:     System.Photo.LightSource -- PKEY_Photo_LightSource</para>
             <para>Description: PropertyTagExifLightSource
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37384</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.MakerNote">
            <summary>
            <para>Name:     System.Photo.MakerNote -- PKEY_Photo_MakerNote</para>
            <para>Description: </para>
            <para>Type:     Buffer -- VT_VECTOR | VT_UI1  (For variants: VT_ARRAY | VT_UI1)</para>
            <para>FormatID: {FA303353-B659-4052-85E9-BCAC79549B84}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.MakerNoteOffset">
            <summary>
            <para>Name:     System.Photo.MakerNoteOffset -- PKEY_Photo_MakerNoteOffset</para>
            <para>Description: </para>
            <para>Type:     UInt64 -- VT_UI8</para>
            <para>FormatID: {813F4124-34E6-4D17-AB3E-6B1F3C2247A1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.MaxAperture">
             <summary>
             <para>Name:     System.Photo.MaxAperture -- PKEY_Photo_MaxAperture</para>
             <para>Description: Calculated from PKEY_Photo_MaxApertureNumerator and PKEY_Photo_MaxApertureDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {08F6D7C2-E3F2-44FC-AF1E-5AA5C81A2D3E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.MaxApertureDenominator">
             <summary>
             <para>Name:     System.Photo.MaxApertureDenominator -- PKEY_Photo_MaxApertureDenominator</para>
             <para>Description: Denominator of PKEY_Photo_MaxAperture
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {C77724D4-601F-46C5-9B89-C53F93BCEB77}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.MaxApertureNumerator">
             <summary>
             <para>Name:     System.Photo.MaxApertureNumerator -- PKEY_Photo_MaxApertureNumerator</para>
             <para>Description: Numerator of PKEY_Photo_MaxAperture
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {C107E191-A459-44C5-9AE6-B952AD4B906D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.MeteringMode">
             <summary>
             <para>Name:     System.Photo.MeteringMode -- PKEY_Photo_MeteringMode</para>
             <para>Description: PropertyTagExifMeteringMode
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37383</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.MeteringModeText">
             <summary>
             <para>Name:     System.Photo.MeteringModeText -- PKEY_Photo_MeteringModeText</para>
             <para>Description: This is the user-friendly form of System.Photo.MeteringMode.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {F628FD8C-7BA8-465A-A65B-C5AA79263A9E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.Orientation">
             <summary>
             <para>Name:     System.Photo.Orientation -- PKEY_Photo_Orientation</para>
             <para>Description: This is the image orientation viewed in terms of rows and columns.
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 274 (PropertyTagOrientation)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.OrientationText">
             <summary>
             <para>Name:     System.Photo.OrientationText -- PKEY_Photo_OrientationText</para>
             <para>Description: This is the user-friendly form of System.Photo.Orientation.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A9EA193C-C511-498A-A06B-58E2776DCC28}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.PeopleNames">
             <summary>
             <para>Name:     System.Photo.PeopleNames -- PKEY_Photo_PeopleNames</para>
             <para>Description: The people tags on an image.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: {E8309B6E-084C-49B4-B1FC-90A80331B638}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.PhotometricInterpretation">
             <summary>
             <para>Name:     System.Photo.PhotometricInterpretation -- PKEY_Photo_PhotometricInterpretation</para>
             <para>Description: This is the pixel composition. In JPEG compressed data, a JPEG marker is used 
            instead of this property.
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {341796F1-1DF9-4B1C-A564-91BDEFA43877}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.PhotometricInterpretationText">
             <summary>
             <para>Name:     System.Photo.PhotometricInterpretationText -- PKEY_Photo_PhotometricInterpretationText</para>
             <para>Description: This is the user-friendly form of System.Photo.PhotometricInterpretation.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {821437D6-9EAB-4765-A589-3B1CBBD22A61}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ProgramMode">
             <summary>
             <para>Name:     System.Photo.ProgramMode -- PKEY_Photo_ProgramMode</para>
             <para>Description: This is the class of the program used by the camera to set exposure when the 
            picture is taken.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {6D217F6D-3F6A-4825-B470-5F03CA2FBE9B}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ProgramModeText">
             <summary>
             <para>Name:     System.Photo.ProgramModeText -- PKEY_Photo_ProgramModeText</para>
             <para>Description: This is the user-friendly form of System.Photo.ProgramMode.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {7FE3AA27-2648-42F3-89B0-454E5CB150C3}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.RelatedSoundFile">
            <summary>
            <para>Name:     System.Photo.RelatedSoundFile -- PKEY_Photo_RelatedSoundFile</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {318A6B45-087F-4DC2-B8CC-05359551FC9E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.Saturation">
             <summary>
             <para>Name:     System.Photo.Saturation -- PKEY_Photo_Saturation</para>
             <para>Description: This indicates the direction of saturation processing applied by the camera when 
            the image was shot.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {49237325-A95A-4F67-B211-816B2D45D2E0}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.SaturationText">
             <summary>
             <para>Name:     System.Photo.SaturationText -- PKEY_Photo_SaturationText</para>
             <para>Description: This is the user-friendly form of System.Photo.Saturation.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {61478C08-B600-4A84-BBE4-E99C45F0A072}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.Sharpness">
             <summary>
             <para>Name:     System.Photo.Sharpness -- PKEY_Photo_Sharpness</para>
             <para>Description: This indicates the direction of sharpness processing applied by the camera when 
            the image was shot.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {FC6976DB-8349-4970-AE97-B3C5316A08F0}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.SharpnessText">
             <summary>
             <para>Name:     System.Photo.SharpnessText -- PKEY_Photo_SharpnessText</para>
             <para>Description: This is the user-friendly form of System.Photo.Sharpness.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {51EC3F47-DD50-421D-8769-334F50424B1E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ShutterSpeed">
             <summary>
             <para>Name:     System.Photo.ShutterSpeed -- PKEY_Photo_ShutterSpeed</para>
             <para>Description: PropertyTagExifShutterSpeed.  Calculated from PKEY_Photo_ShutterSpeedNumerator and PKEY_Photo_ShutterSpeedDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37377</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ShutterSpeedDenominator">
             <summary>
             <para>Name:     System.Photo.ShutterSpeedDenominator -- PKEY_Photo_ShutterSpeedDenominator</para>
             <para>Description: Denominator of PKEY_Photo_ShutterSpeed
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {E13D8975-81C7-4948-AE3F-37CAE11E8FF7}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.ShutterSpeedNumerator">
             <summary>
             <para>Name:     System.Photo.ShutterSpeedNumerator -- PKEY_Photo_ShutterSpeedNumerator</para>
             <para>Description: Numerator of PKEY_Photo_ShutterSpeed
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {16EA4042-D6F4-4BCA-8349-7C78D30FB333}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.SubjectDistance">
             <summary>
             <para>Name:     System.Photo.SubjectDistance -- PKEY_Photo_SubjectDistance</para>
             <para>Description: PropertyTagExifSubjectDist.  Calculated from PKEY_Photo_SubjectDistanceNumerator and PKEY_Photo_SubjectDistanceDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37382</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.SubjectDistanceDenominator">
             <summary>
             <para>Name:     System.Photo.SubjectDistanceDenominator -- PKEY_Photo_SubjectDistanceDenominator</para>
             <para>Description: Denominator of PKEY_Photo_SubjectDistance
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {0C840A88-B043-466D-9766-D4B26DA3FA77}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.SubjectDistanceNumerator">
             <summary>
             <para>Name:     System.Photo.SubjectDistanceNumerator -- PKEY_Photo_SubjectDistanceNumerator</para>
             <para>Description: Numerator of PKEY_Photo_SubjectDistance
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {8AF4961C-F526-43E5-AA81-DB768219178D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.TagViewAggregate">
             <summary>
             <para>Name:     System.Photo.TagViewAggregate -- PKEY_Photo_TagViewAggregate</para>
             <para>Description: A read-only aggregation of tag-like properties for use in building views.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: {B812F15D-C2D8-4BBF-BACD-79744346113F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.TranscodedForSync">
            <summary>
            <para>Name:     System.Photo.TranscodedForSync -- PKEY_Photo_TranscodedForSync</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {9A8EBB75-6458-4E82-BACB-35C0095B03BB}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.WhiteBalance">
             <summary>
             <para>Name:     System.Photo.WhiteBalance -- PKEY_Photo_WhiteBalance</para>
             <para>Description: This indicates the white balance mode set when the image was shot.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {EE3D3D8A-5381-4CFA-B13B-AAF66B5F4EC9}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Photo.WhiteBalanceText">
             <summary>
             <para>Name:     System.Photo.WhiteBalanceText -- PKEY_Photo_WhiteBalanceText</para>
             <para>Description: This is the user-friendly form of System.Photo.WhiteBalance.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6336B95E-C7A7-426D-86FD-7AE3D39C84B4}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup">
            <summary>
            PropGroup Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Advanced">
            <summary>
            <para>Name:     System.PropGroup.Advanced -- PKEY_PropGroup_Advanced</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {900A403B-097B-4B95-8AE2-071FDAEEB118}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Audio">
            <summary>
            <para>Name:     System.PropGroup.Audio -- PKEY_PropGroup_Audio</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {2804D469-788F-48AA-8570-71B9C187E138}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Calendar">
            <summary>
            <para>Name:     System.PropGroup.Calendar -- PKEY_PropGroup_Calendar</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {9973D2B5-BFD8-438A-BA94-5349B293181A}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Camera">
            <summary>
            <para>Name:     System.PropGroup.Camera -- PKEY_PropGroup_Camera</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {DE00DE32-547E-4981-AD4B-542F2E9007D8}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Contact">
            <summary>
            <para>Name:     System.PropGroup.Contact -- PKEY_PropGroup_Contact</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {DF975FD3-250A-4004-858F-34E29A3E37AA}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Content">
            <summary>
            <para>Name:     System.PropGroup.Content -- PKEY_PropGroup_Content</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {D0DAB0BA-368A-4050-A882-6C010FD19A4F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Description">
            <summary>
            <para>Name:     System.PropGroup.Description -- PKEY_PropGroup_Description</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {8969B275-9475-4E00-A887-FF93B8B41E44}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.FileSystem">
            <summary>
            <para>Name:     System.PropGroup.FileSystem -- PKEY_PropGroup_FileSystem</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {E3A7D2C1-80FC-4B40-8F34-30EA111BDC2E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.General">
            <summary>
            <para>Name:     System.PropGroup.General -- PKEY_PropGroup_General</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {CC301630-B192-4C22-B372-9F4C6D338E07}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.GPS">
            <summary>
            <para>Name:     System.PropGroup.GPS -- PKEY_PropGroup_GPS</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {F3713ADA-90E3-4E11-AAE5-FDC17685B9BE}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Image">
            <summary>
            <para>Name:     System.PropGroup.Image -- PKEY_PropGroup_Image</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {E3690A87-0FA8-4A2A-9A9F-FCE8827055AC}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Media">
            <summary>
            <para>Name:     System.PropGroup.Media -- PKEY_PropGroup_Media</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {61872CF7-6B5E-4B4B-AC2D-59DA84459248}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.MediaAdvanced">
            <summary>
            <para>Name:     System.PropGroup.MediaAdvanced -- PKEY_PropGroup_MediaAdvanced</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {8859A284-DE7E-4642-99BA-D431D044B1EC}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Message">
            <summary>
            <para>Name:     System.PropGroup.Message -- PKEY_PropGroup_Message</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {7FD7259D-16B4-4135-9F97-7C96ECD2FA9E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Music">
            <summary>
            <para>Name:     System.PropGroup.Music -- PKEY_PropGroup_Music</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {68DD6094-7216-40F1-A029-43FE7127043F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Origin">
            <summary>
            <para>Name:     System.PropGroup.Origin -- PKEY_PropGroup_Origin</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {2598D2FB-5569-4367-95DF-5CD3A177E1A5}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.PhotoAdvanced">
            <summary>
            <para>Name:     System.PropGroup.PhotoAdvanced -- PKEY_PropGroup_PhotoAdvanced</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {0CB2BF5A-9EE7-4A86-8222-F01E07FDADAF}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.RecordedTV">
            <summary>
            <para>Name:     System.PropGroup.RecordedTV -- PKEY_PropGroup_RecordedTV</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {E7B33238-6584-4170-A5C0-AC25EFD9DA56}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropGroup.Video">
            <summary>
            <para>Name:     System.PropGroup.Video -- PKEY_PropGroup_Video</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {BEBE0920-7671-4C54-A3EB-49FDDFC191EE}, 100</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList">
            <summary>
            PropList Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.ConflictPrompt">
             <summary>
             <para>Name:     System.PropList.ConflictPrompt -- PKEY_PropList_ConflictPrompt</para>
             <para>Description: The list of properties to show in the file operation conflict resolution dialog. Properties with empty 
            values will not be displayed. Register under the regvalue of "ConflictPrompt".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 11</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.ContentViewModeForBrowse">
             <summary>
             <para>Name:     System.PropList.ContentViewModeForBrowse -- PKEY_PropList_ContentViewModeForBrowse</para>
             <para>Description: The list of properties to show in the content view mode of an item in the context of browsing.
            Register the regvalue under the name of "ContentViewModeForBrowse".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 13</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.ContentViewModeForSearch">
             <summary>
             <para>Name:     System.PropList.ContentViewModeForSearch -- PKEY_PropList_ContentViewModeForSearch</para>
             <para>Description: The list of properties to show in the content view mode of an item in the context of searching.
            Register the regvalue under the name of "ContentViewModeForSearch".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 14</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.ExtendedTileInfo">
             <summary>
             <para>Name:     System.PropList.ExtendedTileInfo -- PKEY_PropList_ExtendedTileInfo</para>
             <para>Description: The list of properties to show in the listview on extended tiles. Register under the regvalue of 
            "ExtendedTileInfo".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.FileOperationPrompt">
             <summary>
             <para>Name:     System.PropList.FileOperationPrompt -- PKEY_PropList_FileOperationPrompt</para>
             <para>Description: The list of properties to show in the file operation confirmation dialog. Properties with empty values 
            will not be displayed. If this list is not specified, then the InfoTip property list is used instead. 
            Register under the regvalue of "FileOperationPrompt".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.FullDetails">
             <summary>
             <para>Name:     System.PropList.FullDetails -- PKEY_PropList_FullDetails</para>
             <para>Description: The list of all the properties to show in the details page.  Property groups can be included in this list 
            in order to more easily organize the UI.  Register under the regvalue of "FullDetails".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.InfoTip">
             <summary>
             <para>Name:     System.PropList.InfoTip -- PKEY_PropList_InfoTip</para>
             <para>Description: The list of properties to show in the infotip. Properties with empty values will not be displayed. Register 
            under the regvalue of "InfoTip".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 4 (PID_PROPLIST_INFOTIP)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.NonPersonal">
             <summary>
             <para>Name:     System.PropList.NonPersonal -- PKEY_PropList_NonPersonal</para>
             <para>Description: The list of properties that are considered 'non-personal'. When told to remove all non-personal properties 
            from a given file, the system will leave these particular properties untouched. Register under the regvalue 
            of "NonPersonal".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {49D1091F-082E-493F-B23F-D2308AA9668C}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.PreviewDetails">
             <summary>
             <para>Name:     System.PropList.PreviewDetails -- PKEY_PropList_PreviewDetails</para>
             <para>Description: The list of properties to display in the preview pane.  Register under the regvalue of "PreviewDetails".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.PreviewTitle">
             <summary>
             <para>Name:     System.PropList.PreviewTitle -- PKEY_PropList_PreviewTitle</para>
             <para>Description: The one or two properties to display in the preview pane title section.  The optional second property is 
            displayed as a subtitle.  Register under the regvalue of "PreviewTitle".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.QuickTip">
             <summary>
             <para>Name:     System.PropList.QuickTip -- PKEY_PropList_QuickTip</para>
             <para>Description: The list of properties to show in the infotip when the item is on a slow network. Properties with empty 
            values will not be displayed. Register under the regvalue of "QuickTip".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 5 (PID_PROPLIST_QUICKTIP)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.TileInfo">
             <summary>
             <para>Name:     System.PropList.TileInfo -- PKEY_PropList_TileInfo</para>
             <para>Description: The list of properties to show in the listview on tiles. Register under the regvalue of "TileInfo".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 3 (PID_PROPLIST_TILEINFO)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.PropList.XPDetailsPanel">
             <summary>
             <para>Name:     System.PropList.XPDetailsPanel -- PKEY_PropList_XPDetailsPanel</para>
             <para>Description: The list of properties to display in the XP webview details panel. Obsolete.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_WebView) {F2275480-F782-4291-BD94-F13693513AEC}, 0 (PID_DISPLAY_PROPERTIES)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV">
            <summary>
            RecordedTV Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.ChannelNumber">
             <summary>
             <para>Name:     System.RecordedTV.ChannelNumber -- PKEY_RecordedTV_ChannelNumber</para>
             <para>Description: Example: 42
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 7</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.Credits">
             <summary>
             <para>Name:     System.RecordedTV.Credits -- PKEY_RecordedTV_Credits</para>
             <para>Description: Example: "Don Messick/Frank Welker/Casey Kasem/Heather North/Nicole Jaffe;;;"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.DateContentExpires">
            <summary>
            <para>Name:     System.RecordedTV.DateContentExpires -- PKEY_RecordedTV_DateContentExpires</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 15</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.EpisodeName">
             <summary>
             <para>Name:     System.RecordedTV.EpisodeName -- PKEY_RecordedTV_EpisodeName</para>
             <para>Description: Example: "Nowhere to Hyde"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.IsATSCContent">
            <summary>
            <para>Name:     System.RecordedTV.IsATSCContent -- PKEY_RecordedTV_IsATSCContent</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 16</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.IsClosedCaptioningAvailable">
            <summary>
            <para>Name:     System.RecordedTV.IsClosedCaptioningAvailable -- PKEY_RecordedTV_IsClosedCaptioningAvailable</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 12</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.IsDTVContent">
            <summary>
            <para>Name:     System.RecordedTV.IsDTVContent -- PKEY_RecordedTV_IsDTVContent</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 17</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.IsHDContent">
            <summary>
            <para>Name:     System.RecordedTV.IsHDContent -- PKEY_RecordedTV_IsHDContent</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 18</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.IsRepeatBroadcast">
            <summary>
            <para>Name:     System.RecordedTV.IsRepeatBroadcast -- PKEY_RecordedTV_IsRepeatBroadcast</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 13</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.IsSAP">
            <summary>
            <para>Name:     System.RecordedTV.IsSAP -- PKEY_RecordedTV_IsSAP</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 14</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.NetworkAffiliation">
            <summary>
            <para>Name:     System.RecordedTV.NetworkAffiliation -- PKEY_RecordedTV_NetworkAffiliation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {2C53C813-FB63-4E22-A1AB-0B331CA1E273}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.OriginalBroadcastDate">
            <summary>
            <para>Name:     System.RecordedTV.OriginalBroadcastDate -- PKEY_RecordedTV_OriginalBroadcastDate</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {4684FE97-8765-4842-9C13-F006447B178C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.ProgramDescription">
            <summary>
            <para>Name:     System.RecordedTV.ProgramDescription -- PKEY_RecordedTV_ProgramDescription</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 3</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.RecordingTime">
            <summary>
            <para>Name:     System.RecordedTV.RecordingTime -- PKEY_RecordedTV_RecordingTime</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {A5477F61-7A82-4ECA-9DDE-98B69B2479B3}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.StationCallSign">
             <summary>
             <para>Name:     System.RecordedTV.StationCallSign -- PKEY_RecordedTV_StationCallSign</para>
             <para>Description: Example: "TOONP"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.RecordedTV.StationName">
            <summary>
            <para>Name:     System.RecordedTV.StationName -- PKEY_RecordedTV_StationName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {1B5439E7-EBA1-4AF8-BDD7-7AF1D4549493}, 100</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search">
            <summary>
            Search Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.AutoSummary">
             <summary>
             <para>Name:     System.Search.AutoSummary -- PKEY_Search_AutoSummary</para>
             <para>Description: General Summary of the document.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {560C36C0-503A-11CF-BAA1-00004C752A9A}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.ContainerHash">
             <summary>
             <para>Name:     System.Search.ContainerHash -- PKEY_Search_ContainerHash</para>
             <para>Description: Hash code used to identify attachments to be deleted based on a common container url
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {BCEEE283-35DF-4D53-826A-F36A3EEFC6BE}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.Contents">
             <summary>
             <para>Name:     System.Search.Contents -- PKEY_Search_Contents</para>
             <para>Description: The contents of the item. This property is for query restrictions only; it cannot be retrieved in a 
            query result. The Indexing Service friendly name is 'contents'.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 19 (PID_STG_CONTENTS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.EntryID">
             <summary>
             <para>Name:     System.Search.EntryID -- PKEY_Search_EntryID</para>
             <para>Description: The entry ID for an item within a given catalog in the Windows Search Index.
            This value may be recycled, and therefore is not considered unique over time.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_Query) {49691C90-7E17-101A-A91C-08002B2ECDA9}, 5 (PROPID_QUERY_WORKID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.ExtendedProperties">
            <summary>
            <para>Name:     System.Search.ExtendedProperties -- PKEY_Search_ExtendedProperties</para>
            <para>Description: </para>
            <para>Type:     Blob -- VT_BLOB</para>
            <para>FormatID: {7B03B546-FA4F-4A52-A2FE-03D5311E5865}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.GatherTime">
             <summary>
             <para>Name:     System.Search.GatherTime -- PKEY_Search_GatherTime</para>
             <para>Description: The Datetime that the Windows Search Gatherer process last pushed properties of this document to the Windows Search Gatherer Plugins.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {0B63E350-9CCC-11D0-BCDB-00805FCCCE04}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.HitCount">
             <summary>
             <para>Name:     System.Search.HitCount -- PKEY_Search_HitCount</para>
             <para>Description: When using CONTAINS over the Windows Search Index, this is the number of matches of the term.
            If there are multiple CONTAINS, an AND computes the min number of hits and an OR the max number of hits.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_Query) {49691C90-7E17-101A-A91C-08002B2ECDA9}, 4 (PROPID_QUERY_HITCOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.IsClosedDirectory">
             <summary>
             <para>Name:     System.Search.IsClosedDirectory -- PKEY_Search_IsClosedDirectory</para>
             <para>Description: If this property is emitted with a value of TRUE, then it indicates that this URL's last modified time applies to all of it's children, and if this URL is deleted then all of it's children are deleted as well.  For example, this would be emitted as TRUE when emitting the URL of an email so that all attachments are tied to the last modified time of that email.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {0B63E343-9CCC-11D0-BCDB-00805FCCCE04}, 23</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.IsFullyContained">
             <summary>
             <para>Name:     System.Search.IsFullyContained -- PKEY_Search_IsFullyContained</para>
             <para>Description: Any child URL of a URL which has System.Search.IsClosedDirectory=TRUE must emit System.Search.IsFullyContained=TRUE.  This ensures that the URL is not deleted at the end of a crawl because it hasn't been visited (which is the normal mechanism for detecting deletes).  For example an email attachment would emit this property
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {0B63E343-9CCC-11D0-BCDB-00805FCCCE04}, 24</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.QueryFocusedSummary">
             <summary>
             <para>Name:     System.Search.QueryFocusedSummary -- PKEY_Search_QueryFocusedSummary</para>
             <para>Description: Query Focused Summary of the document.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {560C36C0-503A-11CF-BAA1-00004C752A9A}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.QueryFocusedSummaryWithFallback">
             <summary>
             <para>Name:     System.Search.QueryFocusedSummaryWithFallback -- PKEY_Search_QueryFocusedSummaryWithFallback</para>
             <para>Description: Query Focused Summary of the document, if none is available it returns the AutoSummary.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {560C36C0-503A-11CF-BAA1-00004C752A9A}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.Rank">
             <summary>
             <para>Name:     System.Search.Rank -- PKEY_Search_Rank</para>
             <para>Description: Relevance rank of row. Ranges from 0-1000. Larger numbers = better matches.  Query-time only.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_Query) {49691C90-7E17-101A-A91C-08002B2ECDA9}, 3 (PROPID_QUERY_RANK)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.Store">
             <summary>
             <para>Name:     System.Search.Store -- PKEY_Search_Store</para>
             <para>Description: The identifier for the protocol handler that produced this item. (E.g. MAPI, CSC, FILE etc.)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A06992B3-8CAF-4ED7-A547-B259E32AC9FC}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.UrlToIndex">
             <summary>
             <para>Name:     System.Search.UrlToIndex -- PKEY_Search_UrlToIndex</para>
             <para>Description: This property should be emitted by a container IFilter for each child URL within the container.  The children will eventually be crawled by the indexer if they are within scope.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {0B63E343-9CCC-11D0-BCDB-00805FCCCE04}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Search.UrlToIndexWithModificationTime">
             <summary>
             <para>Name:     System.Search.UrlToIndexWithModificationTime -- PKEY_Search_UrlToIndexWithModificationTime</para>
             <para>Description: This property is the same as System.Search.UrlToIndex except that it includes the time the URL was last modified.  This is an optimization for the indexer as it doesn't have to call back into the protocol handler to ask for this information to determine if the content needs to be indexed again.  The property is a vector with two elements, a VT_LPWSTR with the URL and a VT_FILETIME for the last modified time.
            </para>
             <para>Type:     Multivalue Any -- VT_VECTOR | VT_NULL  (For variants: VT_ARRAY | VT_NULL)</para>
             <para>FormatID: {0B63E343-9CCC-11D0-BCDB-00805FCCCE04}, 12</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Shell">
            <summary>
            Shell Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Shell.OmitFromView">
             <summary>
             <para>Name:     System.Shell.OmitFromView -- PKEY_Shell_OmitFromView</para>
             <para>Description: Set this to a string value of 'True' to omit this item from shell views
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {DE35258C-C695-4CBC-B982-38B0AD24CED0}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Shell.SFGAOFlagsStrings">
             <summary>
             <para>Name:     System.Shell.SFGAOFlagsStrings -- PKEY_Shell_SFGAOFlagsStrings</para>
             <para>Description: Expresses the SFGAO flags as string values and is used as a query optimization.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D6942081-D53B-443D-AD47-5E059D9CD27A}, 2</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Software">
            <summary>
            Software Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Software.DateLastUsed">
             <summary>
             <para>Name:     System.Software.DateLastUsed -- PKEY_Software_DateLastUsed</para>
             <para>Description: 
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {841E4F90-FF59-4D16-8947-E81BBFFAB36D}, 16</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Software.ProductName">
             <summary>
             <para>Name:     System.Software.ProductName -- PKEY_Software_ProductName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 7</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync">
            <summary>
            Sync Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.Comments">
            <summary>
            <para>Name:     System.Sync.Comments -- PKEY_Sync_Comments</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 13</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.ConflictDescription">
            <summary>
            <para>Name:     System.Sync.ConflictDescription -- PKEY_Sync_ConflictDescription</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CE50C159-2FB8-41FD-BE68-D3E042E274BC}, 4</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.ConflictFirstLocation">
            <summary>
            <para>Name:     System.Sync.ConflictFirstLocation -- PKEY_Sync_ConflictFirstLocation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CE50C159-2FB8-41FD-BE68-D3E042E274BC}, 6</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.ConflictSecondLocation">
            <summary>
            <para>Name:     System.Sync.ConflictSecondLocation -- PKEY_Sync_ConflictSecondLocation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CE50C159-2FB8-41FD-BE68-D3E042E274BC}, 7</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.HandlerCollectionID">
            <summary>
            <para>Name:     System.Sync.HandlerCollectionID -- PKEY_Sync_HandlerCollectionID</para>
            <para>Description: </para>
            <para>Type:     Guid -- VT_CLSID</para>
            <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 2</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.HandlerID">
            <summary>
            <para>Name:     System.Sync.HandlerID -- PKEY_Sync_HandlerID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 3</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.HandlerName">
            <summary>
            <para>Name:     System.Sync.HandlerName -- PKEY_Sync_HandlerName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CE50C159-2FB8-41FD-BE68-D3E042E274BC}, 2</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.HandlerType">
             <summary>
             <para>Name:     System.Sync.HandlerType -- PKEY_Sync_HandlerType</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.HandlerTypeLabel">
             <summary>
             <para>Name:     System.Sync.HandlerTypeLabel -- PKEY_Sync_HandlerTypeLabel</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.ItemID">
            <summary>
            <para>Name:     System.Sync.ItemID -- PKEY_Sync_ItemID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 6</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.ItemName">
            <summary>
            <para>Name:     System.Sync.ItemName -- PKEY_Sync_ItemName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CE50C159-2FB8-41FD-BE68-D3E042E274BC}, 3</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.ProgressPercentage">
             <summary>
             <para>Name:     System.Sync.ProgressPercentage -- PKEY_Sync_ProgressPercentage</para>
             <para>Description: An integer value between 0 and 100 representing the percentage completed.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 23</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.State">
             <summary>
             <para>Name:     System.Sync.State -- PKEY_Sync_State</para>
             <para>Description: Sync state.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 24</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Sync.Status">
            <summary>
            <para>Name:     System.Sync.Status -- PKEY_Sync_Status</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 10</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Task">
            <summary>
            Task Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Task.BillingInformation">
            <summary>
            <para>Name:     System.Task.BillingInformation -- PKEY_Task_BillingInformation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {D37D52C6-261C-4303-82B3-08B926AC6F12}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Task.CompletionStatus">
            <summary>
            <para>Name:     System.Task.CompletionStatus -- PKEY_Task_CompletionStatus</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {084D8A0A-E6D5-40DE-BF1F-C8820E7C877C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Task.Owner">
            <summary>
            <para>Name:     System.Task.Owner -- PKEY_Task_Owner</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {08C7CC5F-60F2-4494-AD75-55E3E0B5ADD0}, 100</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video">
            <summary>
            Video Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.Compression">
             <summary>
             <para>Name:     System.Video.Compression -- PKEY_Video_Compression</para>
             <para>Description: Indicates the level of compression for the video stream.  "Compression".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 10 (PIDVSI_COMPRESSION)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.Director">
             <summary>
             <para>Name:     System.Video.Director -- PKEY_Video_Director</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 20 (PIDMSI_DIRECTOR)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.EncodingBitrate">
             <summary>
             <para>Name:     System.Video.EncodingBitrate -- PKEY_Video_EncodingBitrate</para>
             <para>Description: Indicates the data rate in "bits per second" for the video stream. "DataRate".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 8 (PIDVSI_DATA_RATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.FourCC">
             <summary>
             <para>Name:     System.Video.FourCC -- PKEY_Video_FourCC</para>
             <para>Description: Indicates the 4CC for the video stream.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 44</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.FrameHeight">
             <summary>
             <para>Name:     System.Video.FrameHeight -- PKEY_Video_FrameHeight</para>
             <para>Description: Indicates the frame height for the video stream.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.FrameRate">
             <summary>
             <para>Name:     System.Video.FrameRate -- PKEY_Video_FrameRate</para>
             <para>Description: Indicates the frame rate in "frames per millisecond" for the video stream.  "FrameRate".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 6 (PIDVSI_FRAME_RATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.FrameWidth">
             <summary>
             <para>Name:     System.Video.FrameWidth -- PKEY_Video_FrameWidth</para>
             <para>Description: Indicates the frame width for the video stream.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.HorizontalAspectRatio">
             <summary>
             <para>Name:     System.Video.HorizontalAspectRatio -- PKEY_Video_HorizontalAspectRatio</para>
             <para>Description: Indicates the horizontal portion of the aspect ratio. The X portion of XX:YY,
            like 16:9.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 42</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.SampleSize">
             <summary>
             <para>Name:     System.Video.SampleSize -- PKEY_Video_SampleSize</para>
             <para>Description: Indicates the sample size in bits for the video stream.  "SampleSize".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 9 (PIDVSI_SAMPLE_SIZE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.StreamName">
             <summary>
             <para>Name:     System.Video.StreamName -- PKEY_Video_StreamName</para>
             <para>Description: Indicates the name for the video stream. "StreamName".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 2 (PIDVSI_STREAM_NAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.StreamNumber">
             <summary>
             <para>Name:     System.Video.StreamNumber -- PKEY_Video_StreamNumber</para>
             <para>Description: "Stream Number".
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 11 (PIDVSI_STREAM_NUMBER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.TotalBitrate">
             <summary>
             <para>Name:     System.Video.TotalBitrate -- PKEY_Video_TotalBitrate</para>
             <para>Description: Indicates the total data rate in "bits per second" for all video and audio streams.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 43 (PIDVSI_TOTAL_BITRATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.TranscodedForSync">
            <summary>
            <para>Name:     System.Video.TranscodedForSync -- PKEY_Video_TranscodedForSync</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 46</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Video.VerticalAspectRatio">
             <summary>
             <para>Name:     System.Video.VerticalAspectRatio -- PKEY_Video_VerticalAspectRatio</para>
             <para>Description: Indicates the vertical portion of the aspect ratio. The Y portion of 
            XX:YY, like 16:9.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 45</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Volume">
            <summary>
            Volume Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Volume.FileSystem">
             <summary>
             <para>Name:     System.Volume.FileSystem -- PKEY_Volume_FileSystem</para>
             <para>Description: Indicates the filesystem of the volume.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 4 (PID_VOLUME_FILESYSTEM)  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Volume.IsMappedDrive">
            <summary>
            <para>Name:     System.Volume.IsMappedDrive -- PKEY_Volume_IsMappedDrive</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {149C0B69-2C2D-48FC-808F-D318D78C4636}, 2</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.SystemProperties.System.Volume.IsRoot">
             <summary>
             <para>Name:     System.Volume.IsRoot -- PKEY_Volume_IsRoot</para>
             <para>Description: 
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 10  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogTextBox">
            <summary>
             Defines the text box controls in the Common File Dialog.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogTextBox.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogTextBox.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified text.
            </summary>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogTextBox.#ctor(System.String,System.String)">
            <summary>
            Creates a new instance of this class with the specified name and text.
            </summary>
            <param name="name">The name of this control.</param>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogTextBox.customizedDialog">
            <summary>
            Holds an instance of the customized (/native) dialog and should
            be null until after the Attach() call is made.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogTextBox.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach the TextBox control to the dialog object
            </summary>
            <param name="dialog">Target dialog</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogTextBox.Text">
            <summary>
            Gets or sets a value for the text string contained in the CommonFileDialogTextBox.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogGroupBox">
            <summary>
            Represents a group box control for the Common File Dialog.
            </summary>note
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogGroupBox.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogGroupBox.#ctor(System.String)">
            <summary>
            Create a new instance of this class with the specified text.
            </summary>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogGroupBox.#ctor(System.String,System.String)">
            <summary>
            Creates a new instance of this class with the specified name and text.
            </summary>
            <param name="name">The name of this control.</param>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogGroupBox.Initialize">
            <summary>
            Initializes the item collection for this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogGroupBox.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach the GroupBox control to the dialog object
            </summary>
            <param name="dialog">Target dialog</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogGroupBox.Items">
            <summary>
            Gets the collection of controls for this group box.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBox">
            <summary>
            Creates the ComboBox controls in the Common File Dialog.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBox.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBox.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified name.
            </summary>
            <param name="name">Text to display for this control</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBox.Microsoft#WindowsAPICodePack#Dialogs#Controls#ICommonFileDialogIndexedControls#RaiseSelectedIndexChangedEvent">
            <summary>
            Raises the SelectedIndexChanged event if this control is 
            enabled.
            </summary>
            <remarks>Because this method is defined in an interface, we can either
            have it as public, or make it private and explicitly implement (like below).
            Making it public doesn't really help as its only internal (but can't have this 
            internal because of the interface)
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBox.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach the ComboBox control to the dialog object
            </summary>
            <param name="dialog">The target dialog</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBox.Items">
            <summary>
            Gets the collection of CommonFileDialogComboBoxItem objects.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBox.SelectedIndex">
            <summary>
            Gets or sets the current index of the selected item.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBox.SelectedIndexChanged">
            <summary>
            Occurs when the SelectedIndex is changed.
            </summary>
            
            <remarks>
            By initializing the SelectedIndexChanged event with an empty
            delegate, it is not necessary to check  
            if the SelectedIndexChanged is not null.
            
            </remarks>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBoxItem">
            <summary>
            Creates a ComboBoxItem for the Common File Dialog.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBoxItem.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBoxItem.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified text.
            </summary>
            <param name="text">The text to use for the combo box item.</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogComboBoxItem.Text">
            <summary>
            Gets or sets the string that is displayed for this item.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.RetrievalOptions">
            <summary>
            Contains special retrieval options for known folders.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.KnownFolders">
            <summary>
            Defines properties for known folders that identify the path of standard known folders.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.All">
            <summary>
            Gets a strongly-typed read-only collection of all the registered known folders.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Computer">
            <summary>
            Gets the metadata for the <b>Computer</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Conflict">
            <summary>
            Gets the metadata for the <b>Conflict</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ControlPanel">
            <summary>
            Gets the metadata for the <b>ControlPanel</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Desktop">
            <summary>
            Gets the metadata for the <b>Desktop</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Internet">
            <summary>
            Gets the metadata for the <b>Internet</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Network">
            <summary>
            Gets the metadata for the <b>Network</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Printers">
            <summary>
            Gets the metadata for the <b>Printers</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SyncManager">
            <summary>
            Gets the metadata for the <b>SyncManager</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Connections">
            <summary>
            Gets the metadata for the <b>Connections</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SyncSetup">
            <summary>
            Gets the metadata for the <b>SyncSetup</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SyncResults">
            <summary>
            Gets the metadata for the <b>SyncResults</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.RecycleBin">
            <summary>
            Gets the metadata for the <b>RecycleBin</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Fonts">
            <summary>
            Gets the metadata for the <b>Fonts</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Startup">
            <summary>
            Gets the metadata for the <b>Startup</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Programs">
            <summary>
            Gets the metadata for the <b>Programs</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.StartMenu">
            <summary>
            Gets the metadata for the per-user <b>StartMenu</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Recent">
            <summary>
            Gets the metadata for the per-user <b>Recent</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SendTo">
            <summary>
            Gets the metadata for the per-user <b>SendTo</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Documents">
            <summary>
            Gets the metadata for the per-user <b>Documents</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Favorites">
            <summary>
            Gets the metadata for the per-user <b>Favorites</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.NetHood">
            <summary>
            Gets the metadata for the <b>NetHood</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PrintHood">
            <summary>
            Gets the metadata for the <b>PrintHood</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Templates">
            <summary>
            Gets the metadata for the <b>Templates</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.CommonStartup">
            <summary>
            Gets the metadata for the <b>CommonStartup</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.CommonPrograms">
            <summary>
            Gets the metadata for the <b>CommonPrograms</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.CommonStartMenu">
            <summary>
            Gets the metadata for the <b>CommonStartMenu</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PublicDesktop">
            <summary>
            Gets the metadata for the <b>PublicDesktop</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ProgramData">
            <summary>
            Gets the metadata for the <b>ProgramData</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.CommonTemplates">
            <summary>
            Gets the metadata for the <b>CommonTemplates</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PublicDocuments">
            <summary>
            Gets the metadata for the <b>PublicDocuments</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.RoamingAppData">
            <summary>
            Gets the metadata for the <b>RoamingAppData</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.LocalAppData">
            <summary>
            Gets the metadata for the per-user <b>LocalAppData</b>  
            folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.LocalAppDataLow">
            <summary>
            Gets the metadata for the <b>LocalAppDataLow</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.InternetCache">
            <summary>
            Gets the metadata for the <b>InternetCache</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Cookies">
            <summary>
            Gets the metadata for the <b>Cookies</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.History">
            <summary>
            Gets the metadata for the <b>History</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.System">
            <summary>
            Gets the metadata for the <b>System</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SystemX86">
            <summary>
            Gets the metadata for the <b>SystemX86</b>  
            folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Windows">
            <summary>
            Gets the metadata for the <b>Windows</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Profile">
            <summary>
            Gets the metadata for the <b>Profile</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Pictures">
            <summary>
            Gets the metadata for the per-user <b>Pictures</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ProgramFilesX86">
            <summary>
            Gets the metadata for the <b>ProgramFilesX86</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ProgramFilesCommonX86">
            <summary>
            Gets the metadata for the <b>ProgramFilesCommonX86</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ProgramFilesX64">
            <summary>
            Gets the metadata for the <b>ProgramsFilesX64</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ProgramFilesCommonX64">
            <summary>
             Gets the metadata for the <b> ProgramFilesCommonX64</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ProgramFiles">
            <summary>
            Gets the metadata for the <b>ProgramFiles</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ProgramFilesCommon">
            <summary>
            Gets the metadata for the <b>ProgramFilesCommon</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.AdminTools">
            <summary>
            Gets the metadata for the <b>AdminTools</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.CommonAdminTools">
            <summary>
            Gets the metadata for the <b>CommonAdminTools</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Music">
            <summary>
            Gets the metadata for the per-user <b>Music</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Videos">
            <summary>
            Gets the metadata for the <b>Videos</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PublicPictures">
            <summary>
            Gets the metadata for the <b>PublicPictures</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PublicMusic">
            <summary>
            Gets the metadata for the <b>PublicMusic</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PublicVideos">
            <summary>
            Gets the metadata for the <b>PublicVideos</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ResourceDir">
            <summary>
            Gets the metadata for the <b>ResourceDir</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.LocalizedResourcesDir">
            <summary>
            Gets the metadata for the <b>LocalizedResourcesDir</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.CommonOEMLinks">
            <summary>
            Gets the metadata for the <b>CommonOEMLinks</b> folder. 
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.CDBurning">
            <summary>
            Gets the metadata for the <b>CDBurning</b> folder. 
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.UserProfiles">
            <summary>
            Gets the metadata for the <b>UserProfiles</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Playlists">
            <summary>
            Gets the metadata for the <b>Playlists</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SamplePlaylists">
            <summary>
            Gets the metadata for the <b>SamplePlaylists</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SampleMusic">
            <summary>
            Gets the metadata for the <b>SampleMusic</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SamplePictures">
            <summary>
            Gets the metadata for the <b>SamplePictures</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SampleVideos">
            <summary>
            Gets the metadata for the <b>SampleVideos</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PhotoAlbums">
            <summary>
            Gets the metadata for the <b>PhotoAlbums</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Public">
            <summary>
            Gets the metadata for the <b>Public</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ChangeRemovePrograms">
            <summary>
            Gets the metadata for the <b>ChangeRemovePrograms</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.AppUpdates">
            <summary>
            Gets the metadata for the <b>AppUpdates</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.AddNewPrograms">
            <summary>
            Gets the metadata for the <b>AddNewPrograms</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Downloads">
            <summary>
            Gets the metadata for the per-user <b>Downloads</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PublicDownloads">
            <summary>
            Gets the metadata for the <b>PublicDownloads</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SavedSearches">
            <summary>
            Gets the metadata for the per-user <b>SavedSearches</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.QuickLaunch">
            <summary>
            Gets the metadata for the per-user <b>QuickLaunch</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Contacts">
            <summary>
            Gets the metadata for the <b>Contacts</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SidebarParts">
            <summary>
            Gets the metadata for the <b>SidebarParts</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SidebarDefaultParts">
            <summary>
            Gets the metadata for the <b>SidebarDefaultParts</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.TreeProperties">
            <summary>
            Gets the metadata for the <b>TreeProperties</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PublicGameTasks">
            <summary>
            Gets the metadata for the <b>PublicGameTasks</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.GameTasks">
            <summary>
            Gets the metadata for the <b>GameTasks</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SavedGames">
            <summary>
            Gets the metadata for the per-user <b>SavedGames</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Games">
            <summary>
            Gets the metadata for the <b>Games</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.RecordedTV">
            <summary>
            Gets the metadata for the <b>RecordedTV</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
            <remarks>This folder is not used.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SearchMapi">
            <summary>
            Gets the metadata for the <b>SearchMapi</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SearchCsc">
            <summary>
            Gets the metadata for the <b>SearchCsc</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Links">
            <summary>
            Gets the metadata for the per-user <b>Links</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.UsersFiles">
            <summary>
            Gets the metadata for the <b>UsersFiles</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.SearchHome">
            <summary>
            Gets the metadata for the <b>SearchHome</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.OriginalImages">
            <summary>
            Gets the metadata for the <b>OriginalImages</b> folder.
            </summary>
            <value>An <see cref="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.UserProgramFiles">
            <summary>
            Gets the metadata for the <b>UserProgramFiles</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.UserProgramFilesCommon">
            <summary>
            Gets the metadata for the <b>UserProgramFilesCommon</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Ringtones">
            <summary>
            Gets the metadata for the <b>Ringtones</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PublicRingtones">
            <summary>
            Gets the metadata for the <b>PublicRingtones</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.UsersLibraries">
            <summary>
            Gets the metadata for the <b>UsersLibraries</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.DocumentsLibrary">
            <summary>
            Gets the metadata for the <b>DocumentsLibrary</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.MusicLibrary">
            <summary>
            Gets the metadata for the <b>MusicLibrary</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.PicturesLibrary">
            <summary>
            Gets the metadata for the <b>PicturesLibrary</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.VideosLibrary">
            <summary>
            Gets the metadata for the <b>VideosLibrary</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.RecordedTVLibrary">
            <summary>
            Gets the metadata for the <b>RecordedTVLibrary</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.OtherUsers">
            <summary>
            Gets the metadata for the <b>OtherUsers</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.DeviceMetadataStore">
            <summary>
            Gets the metadata for the <b>DeviceMetadataStore</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.Libraries">
            <summary>
            Gets the metadata for the <b>Libraries</b> folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.UserPinned">
             <summary>
            Gets the metadata for the <b>UserPinned</b> folder.
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolders.ImplicitAppShortcuts">
            <summary>
            Gets the metadata for the <b>ImplicitAppShortcuts</b> folder.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager">
            <summary>
            Represents an instance of the Windows taskbar
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetOverlayIcon(System.Drawing.Icon,System.String)">
            <summary>
            Applies an overlay to a taskbar button of the main application window to indicate application status or a notification to the user.
            </summary>
            <param name="icon">The overlay icon</param>
            <param name="accessibilityText">String that provides an alt text version of the information conveyed by the overlay, for accessibility purposes</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetOverlayIcon(System.IntPtr,System.Drawing.Icon,System.String)">
            <summary>
            Applies an overlay to a taskbar button of the given window handle to indicate application status or a notification to the user.
            </summary>
            <param name="windowHandle">The handle of the window whose associated taskbar button receives the overlay. This handle must belong to a calling process associated with the button's application and must be a valid HWND or the call is ignored.</param>
            <param name="icon">The overlay icon</param>
            <param name="accessibilityText">String that provides an alt text version of the information conveyed by the overlay, for accessibility purposes</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetOverlayIcon(System.Windows.Window,System.Drawing.Icon,System.String)">
            <summary>
            Applies an overlay to a taskbar button of the given WPF window to indicate application status or a notification to the user.
            </summary>
            <param name="window">The window whose associated taskbar button receives the overlay. This window belong to a calling process associated with the button's application and must be already loaded.</param>
            <param name="icon">The overlay icon</param>
            <param name="accessibilityText">String that provides an alt text version of the information conveyed by the overlay, for accessibility purposes</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetProgressValue(System.Int32,System.Int32)">
            <summary>
            Displays or updates a progress bar hosted in a taskbar button of the main application window 
            to show the specific percentage completed of the full operation.
            </summary>
            <param name="currentValue">An application-defined value that indicates the proportion of the operation that has been completed at the time the method is called.</param>
            <param name="maximumValue">An application-defined value that specifies the value currentValue will have when the operation is complete.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetProgressValue(System.Int32,System.Int32,System.IntPtr)">
            <summary>
            Displays or updates a progress bar hosted in a taskbar button of the given window handle 
            to show the specific percentage completed of the full operation.
            </summary>
            <param name="windowHandle">The handle of the window whose associated taskbar button is being used as a progress indicator.
            This window belong to a calling process associated with the button's application and must be already loaded.</param>
            <param name="currentValue">An application-defined value that indicates the proportion of the operation that has been completed at the time the method is called.</param>
            <param name="maximumValue">An application-defined value that specifies the value currentValue will have when the operation is complete.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetProgressValue(System.Int32,System.Int32,System.Windows.Window)">
            <summary>
            Displays or updates a progress bar hosted in a taskbar button of the given WPF window 
            to show the specific percentage completed of the full operation.
            </summary>
            <param name="window">The window whose associated taskbar button is being used as a progress indicator. 
            This window belong to a calling process associated with the button's application and must be already loaded.</param>
            <param name="currentValue">An application-defined value that indicates the proportion of the operation that has been completed at the time the method is called.</param>
            <param name="maximumValue">An application-defined value that specifies the value currentValue will have when the operation is complete.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetProgressState(Microsoft.WindowsAPICodePack.Taskbar.TaskbarProgressBarState)">
            <summary>
            Sets the type and state of the progress indicator displayed on a taskbar button of the main application window.
            </summary>
            <param name="state">Progress state of the progress button</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetProgressState(Microsoft.WindowsAPICodePack.Taskbar.TaskbarProgressBarState,System.IntPtr)">
            <summary>
            Sets the type and state of the progress indicator displayed on a taskbar button 
            of the given window handle 
            </summary>
            <param name="windowHandle">The handle of the window whose associated taskbar button is being used as a progress indicator.
            This window belong to a calling process associated with the button's application and must be already loaded.</param>
            <param name="state">Progress state of the progress button</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetProgressState(Microsoft.WindowsAPICodePack.Taskbar.TaskbarProgressBarState,System.Windows.Window)">
            <summary>
            Sets the type and state of the progress indicator displayed on a taskbar button 
            of the given WPF window
            </summary>
            <param name="window">The window whose associated taskbar button is being used as a progress indicator. 
            This window belong to a calling process associated with the button's application and must be already loaded.</param>
            <param name="state">Progress state of the progress button</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetApplicationIdForSpecificWindow(System.IntPtr,System.String)">
            <summary>
            Sets the application user model id for an individual window
            </summary>
            <param name="appId">The app id to set</param>
            <param name="windowHandle">Window handle for the window that needs a specific application id</param>
            <remarks>AppId specifies a unique Application User Model ID (AppID) for the application or individual 
            top-level window whose taskbar button will hold the custom JumpList built through the methods <see cref="T:Microsoft.WindowsAPICodePack.Taskbar.JumpList"/> class.
            By setting an appId for a specific window, the window will not be grouped with it's parent window/application. Instead it will have it's own taskbar button.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetApplicationIdForSpecificWindow(System.Windows.Window,System.String)">
            <summary>
            Sets the application user model id for a given window
            </summary>
            <param name="appId">The app id to set</param>
            <param name="window">Window that needs a specific application id</param>
            <remarks>AppId specifies a unique Application User Model ID (AppID) for the application or individual 
            top-level window whose taskbar button will hold the custom JumpList built through the methods <see cref="T:Microsoft.WindowsAPICodePack.Taskbar.JumpList"/> class.
            By setting an appId for a specific window, the window will not be grouped with it's parent window/application. Instead it will have it's own taskbar button.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.SetCurrentProcessAppId(System.String)">
            <summary>
            Sets the current process' explicit application user model id.
            </summary>
            <param name="appId">The application id.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.GetCurrentProcessAppId">
            <summary>
            Gets the current process' explicit application user model id.
            </summary>
            <returns>The app id or null if no app id has been defined.</returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.Instance">
            <summary>
            Represents an instance of the Windows Taskbar
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.TabbedThumbnail">
            <summary>
            Gets the Tabbed Thumbnail manager class for adding/updating
            tabbed thumbnail previews.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.ThumbnailToolbars">
            <summary>
            Gets the Thumbnail toolbar manager class for adding/updating
            toolbar buttons.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.ApplicationId">
            <summary>
            Gets or sets the application user model id. Use this to explicitly
            set the application id when generating custom jump lists
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.OwnerHandle">
            <summary>
            Sets the handle of the window whose taskbar button will be used
            to display progress.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.ApplicationIdSetProcessWide">
            <summary>
            Indicates if the user has set the application id for the whole process (all windows)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TaskbarManager.IsPlatformSupported">
            <summary>
            Indicates whether this feature is supported on the current platform.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.JumpListSeparator">
            <summary>
            Represents a separator in the user task list. The JumpListSeparator control
            can only be used in a user task list.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.IJumpListTask">
            <summary>
            Interface for jump list tasks
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListSeparator.#ctor">
            <summary>
            Initializes a new instance of a JumpListSeparator.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListSeparator.Dispose(System.Boolean)">
            <summary>
            Release the native and managed objects
            </summary>
            <param name="disposing">Indicates that this is being called from Dispose(), rather than the finalizer.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListSeparator.Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListSeparator.Finalize">
            <summary>
            Implement the finalizer.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListSeparator.NativeShellLink">
            <summary>
            Gets an IShellLinkW representation of this object
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellNonFileSystemItem">
            <summary>
            Represents a non filesystem item (e.g. virtual items inside Control Panel)
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.CommonSaveFileDialog">
            <summary>
            Creates a Vista or Windows 7 Common File Dialog, allowing the user to select the filename and location for a saved file.
            </summary>
            <permission cref="T:System.Security.Permissions.FileDialogPermission">
            to save a file. Associated enumeration: <see cref="F:System.Security.Permissions.SecurityAction.LinkDemand"/>.
            </permission>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonSaveFileDialog.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonSaveFileDialog.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified name.
            </summary>
            <param name="name">The name of this dialog.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonSaveFileDialog.SetSaveAsItem(Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Sets an item to appear as the initial entry in a <b>Save As</b> dialog.
            </summary>
            <param name="item">The initial entry to be set in the dialog.</param>
            <remarks>The name of the item is displayed in the file name edit box, 
            and the containing folder is opened in the view. This would generally be 
            used when the application is saving an item that already exists.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonSaveFileDialog.SetCollectedPropertyKeys(System.Boolean,Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey[])">
            <summary>
            Specifies which properties will be collected in the save dialog.
            </summary>
            <param name="appendDefault">True to show default properties for the currently selected 
            filetype in addition to the properties specified by propertyList. False to show only properties 
            specified by pList.
            <param name="propertyList">List of properties to collect. This parameter can be null.</param>
            </param>
            <remarks>
            SetCollectedPropertyKeys can be called at any time before the dialog is displayed or while it 
            is visible. If different properties are to be collected depending on the chosen filetype, 
            then SetCollectedProperties can be called in response to CommonFileDialog::FileTypeChanged event.
            Note: By default, no properties are collected in the save dialog.
            </remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonSaveFileDialog.OverwritePrompt">
            <summary>
            Gets or sets a value that controls whether to prompt before 
            overwriting an existing file of the same name. Default value is true.
            </summary>
            <permission cref="T:System.InvalidOperationException">
            This property cannot be changed when the dialog is showing.
            </permission>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonSaveFileDialog.CreatePrompt">
            <summary>
            Gets or sets a value that controls whether to prompt for creation if the item returned in the save dialog does not exist. 
            </summary>
            <remarks>Note that this does not actually create the item.</remarks>
            <permission cref="T:System.InvalidOperationException">
            This property cannot be changed when the dialog is showing.
            </permission>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonSaveFileDialog.IsExpandedMode">
            <summary>
            Gets or sets a value that controls whether to the save dialog 
            displays in expanded mode. 
            </summary>
            <remarks>Expanded mode controls whether the dialog
            shows folders for browsing or hides them.</remarks>
            <permission cref="T:System.InvalidOperationException">
            This property cannot be changed when the dialog is showing.
            </permission>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonSaveFileDialog.AlwaysAppendDefaultExtension">
            <summary>
            Gets or sets a value that controls whether the 
            returned file name has a file extension that matches the 
            currently selected file type.  If necessary, the dialog appends the correct 
            file extension.
            </summary>
            <permission cref="T:System.InvalidOperationException">
            This property cannot be changed when the dialog is showing.
            </permission>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonSaveFileDialog.CollectedProperties">
            <summary>
            Retrieves the set of property values for a saved item or an item in the process of being saved.
            </summary>
            <returns>Collection of property values collected from the save dialog</returns>
            <remarks>This property can be called while the dialog is showing to retrieve the current 
            set of values in the metadata collection pane. It can also be called after the dialog 
            has closed, to retrieve the final set of values. The call to this method will fail 
            unless property collection has been turned on with a call to SetCollectedPropertyKeys method.
            </remarks>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities">
            <summary>
            Specifies the redirection capabilities for known folders. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities.None">
            <summary>
            Redirection capability is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities.AllowAll">
            <summary>
            The known folder can be redirected.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities.Redirectable">
            <summary>
            The known folder can be redirected. 
            Currently, redirection exists only for 
             common and user folders; fixed and virtual folders 
            cannot be redirected.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities.DenyAll">
            <summary>
            Redirection is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities.DenyPolicyRedirected">
            <summary>
            The folder cannot be redirected because it is 
            already redirected by group policy.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities.DenyPolicy">
            <summary>
            The folder cannot be redirected because the policy 
            prohibits redirecting this folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities.DenyPermissions">
            <summary>
            The folder cannot be redirected because the calling 
            application does not have sufficient permissions.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.ExplorerBrowserNativeMethods">
            <summary>
            Internal class that contains interop declarations for 
            functions that are not benign and are performance critical. 
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.NavigationLogEventArgs">
            <summary>
            The event argument for NavigationLogChangedEvent
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.NavigationLogEventArgs.CanNavigateForwardChanged">
            <summary>
            Indicates CanNavigateForward has changed
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.NavigationLogEventArgs.CanNavigateBackwardChanged">
            <summary>
            Indicates CanNavigateBackward has changed
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.NavigationLogEventArgs.LocationsChanged">
            <summary>
            Indicates the Locations collection has changed
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.NavigationLogChangedEventHandler">
            <summary>
            This is fired when the navigation log changes
            </summary>
            <param name="sender">The ExplorerBrowser that this navigation log is attached to.</param>
            <param name="e">The changes made to the navigation log</param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton">
            <summary>
            Represents a taskbar thumbnail button in the thumbnail toolbar.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.#ctor(System.Drawing.Icon,System.String)">
            <summary>
            Initializes an instance of this class
            </summary>
            <param name="icon">The icon to use for this button</param>
            <param name="tooltip">The tooltip string to use for this button.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.FireClick(Microsoft.WindowsAPICodePack.Taskbar.TaskbarWindow)">
            <summary>
            The window manager should call this method to raise the public click event to all
            the subscribers.
            </summary>
            <param name="taskbarWindow">Taskbar Window associated with this button</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Finalize">
            <summary>
            
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Dispose(System.Boolean)">
            <summary>
            Release the native objects.
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Click">
            <summary>
            The event that occurs when the taskbar thumbnail button
            is clicked.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Id">
            <summary>
            Gets thumbnail button's id.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Icon">
            <summary>
            Gets or sets the thumbnail button's icon.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Tooltip">
            <summary>
            Gets or sets the thumbnail button's tooltip.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Visible">
            <summary>
            Gets or sets the thumbnail button's visibility. Default is true.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Enabled">
            <summary>
            Gets or sets the thumbnail button's enabled state. If the button is disabled, it is present, 
            but has a visual state that indicates that it will not respond to user action. Default is true.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.DismissOnClick">
            <summary>
            Gets or sets the property that describes the behavior when the button is clicked. 
            If set to true, the taskbar button's flyout will close immediately. Default is false.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.IsInteractive">
            <summary>
            Gets or sets the property that describes whether the button is interactive with the user. Default is true.
            </summary>
            <remarks>
            Non-interactive buttons don't display any hover behavior nor do they raise click events.
            They are intended to be used as status icons. This is mostly similar to being not Enabled, 
            but the image is not desaturated.
            </remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Flags">
            <summary>
            Native flags enum (used when creating the native button)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.Win32ThumbButton">
            <summary>
            Native representation of the thumbnail button
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.WindowHandle">
            <summary>
            Handle to the window to which this button is for (on the taskbar).
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton.AddedToTaskbar">
            <summary>
            Indicates if this button was added to the taskbar. If it's not yet added,
            then we can't do any updates on it.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.JumpListItem">
            <summary>
            Represents a jump list item.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellFile">
            <summary>
            A file in the Shell Namespace
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellFile.FromFilePath(System.String)">
            <summary>
            Constructs a new ShellFile object given a file path
            </summary>
            <param name="path">The file or folder path</param>
            <returns>ShellFile object created using given file path.</returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellFile.Path">
            <summary>
            The path for this file
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.IJumpListItem">
            <summary>
            Interface for jump list items
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.IJumpListItem.Path">
            <summary>
            Gets or sets this item's path
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListItem.#ctor(System.String)">
            <summary>
            Creates a jump list item with the specified path.
            </summary>
            <param name="path">The path to the jump list item.</param>
            <remarks>The file type should associate the given file  
            with the calling application.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListItem.Path">
            <summary>
            Gets or sets the target path for this jump list item.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategory">
            <summary>
            Represents a custom category on the taskbar's jump list
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategory.AddJumpListItems(Microsoft.WindowsAPICodePack.Taskbar.IJumpListItem[])">
            <summary>
            Add JumpList items for this category
            </summary>
            <param name="items">The items to add to the JumpList.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategory.#ctor(System.String)">
            <summary>
            Creates a new custom category instance
            </summary>
            <param name="categoryName">Category name</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategory.Name">
            <summary>
            Category name
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.JumpListCustomCategory.CollectionChanged">
            <summary>
            Event that is triggered when the jump list collection is modified
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellThumbnailRetrievalOptions">
            <summary>
            Represents the different retrieval options for the thumbnail or icon,
            such as extracting the thumbnail or icon from a file, 
            from the cache only, or from memory only.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellThumbnailRetrievalOptions.Default">
            <summary>
            The default behavior loads a thumbnail. If there is no thumbnail for the current ShellItem,  
            the icon is retrieved. The thumbnail or icon is extracted if it is not currently cached.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellThumbnailRetrievalOptions.CacheOnly">
            <summary>
            The CacheOnly behavior returns a cached thumbnail if it is available. Allows access to the disk,
            but only to retrieve a cached item. If no cached thumbnail is available, a cached per-instance icon is returned but  
            a thumbnail or icon is not extracted.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellThumbnailRetrievalOptions.MemoryOnly">
            <summary>
            The MemoryOnly behavior returns the item only if it is in memory. The disk is not accessed even if the item is cached. 
            Note that this only returns an already-cached icon and can fall back to a per-class icon if 
            an item has a per-instance icon that has not been cached yet. Retrieving a thumbnail, 
            even if it is cached, always requires the disk to be accessed, so this method should not be 
            called from the user interface (UI) thread without passing ShellThumbnailCacheOptions.MemoryOnly.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellThumbnailFormatOptions">
            <summary>
            Represents the format options for the thumbnails and icons.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellThumbnailFormatOptions.Default">
            <summary>
            The default behavior loads a thumbnail. An HBITMAP for the icon of the item is retrieved if there is no thumbnail for the current Shell Item.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellThumbnailFormatOptions.ThumbnailOnly">
            <summary>
            The ThumbnailOnly behavior returns only the thumbnails, never the icon. Note that not all items have thumbnails 
            so ShellThumbnailFormatOptions.ThumbnailOnly can fail in these cases.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellThumbnailFormatOptions.IconOnly">
            <summary>
            The IconOnly behavior returns only the icon, never the thumbnail.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder">
            <summary>
            Represents a registered file system Known Folder
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellFileSystemFolder">
            <summary>
            A folder in the Shell Namespace
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellFileSystemFolder.FromFolderPath(System.String)">
            <summary>
            Constructs a new ShellFileSystemFolder object given a folder path
            </summary>
            <param name="path">The folder path</param>
            <remarks>ShellFileSystemFolder created from the given folder path.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellFileSystemFolder.Path">
            <summary>
            The path for this Folder
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.IKnownFolder">
            <summary>
            Represents a registered or known folder in the system.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.Path">
            <summary>
            Gets the path for this known folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.Category">
            <summary>
            Gets the category designation for this known folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.CanonicalName">
            <summary>
            Gets this known folder's canonical name.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.Description">
            <summary>
            Gets this known folder's description.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.ParentId">
            <summary>
            Gets the unique identifier for this known folder's parent folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.RelativePath">
            <summary>
            Gets this known folder's relative path.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.ParsingName">
            <summary>
            Gets this known folder's parsing name.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.Tooltip">
            <summary>
            Gets this known folder's tool tip text.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.TooltipResourceId">
            <summary>
            Gets the resource identifier for this 
            known folder's tool tip text.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.LocalizedName">
            <summary>
            Gets this known folder's localized name.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.LocalizedNameResourceId">
            <summary>
            Gets the resource identifier for this 
            known folder's localized name.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.Security">
            <summary>
            Gets this known folder's security attributes.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.FileAttributes">
            <summary>
            Gets this known folder's file attributes, 
            such as "read-only".
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.DefinitionOptions">
            <summary>
            Gets an value that describes this known folder's behaviors.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.FolderTypeId">
            <summary>
            Gets the unique identifier for this known folder's type.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.FolderType">
            <summary>
            Gets a string representation of this known folder's type.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.FolderId">
            <summary>
            Gets the unique identifier for this known folder.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.PathExists">
            <summary>
            Gets a value that indicates whether this known folder's path exists on the computer. 
            </summary>
            <remarks>If this property value is <b>false</b>, 
            the folder might be a virtual folder (<see cref="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.Category"/> property will
            be <see cref="F:Microsoft.WindowsAPICodePack.Shell.FolderCategory.Virtual"/> for virtual folders)</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.IKnownFolder.Redirection">
            <summary>
            Gets a value that states whether this known folder 
            can have its path set to a new value, 
            including any restrictions on the redirection.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.Dispose(System.Boolean)">
            <summary>
            Release resources
            </summary>
            <param name="disposing">Indicates that this mothod is being called from Dispose() rather than the finalizer.</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.Path">
            <summary>
            Gets the path for this known folder.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.Category">
            <summary>
            Gets the category designation for this known folder.
            </summary>
            <value>A <see cref="T:Microsoft.WindowsAPICodePack.Shell.FolderCategory"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.CanonicalName">
            <summary>
            Gets this known folder's canonical name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.Description">
            <summary>
            Gets this known folder's description.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.ParentId">
            <summary>
            Gets the unique identifier for this known folder's parent folder.
            </summary>
            <value>A <see cref="T:System.Guid"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.RelativePath">
            <summary>
            Gets this known folder's relative path.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.ParsingName">
            <summary>
            Gets this known folder's parsing name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.Tooltip">
            <summary>
            Gets this known folder's tool tip text.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.TooltipResourceId">
            <summary>
            Gets the resource identifier for this 
            known folder's tool tip text.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.LocalizedName">
            <summary>
            Gets this known folder's localized name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.LocalizedNameResourceId">
            <summary>
            Gets the resource identifier for this 
            known folder's localized name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.Security">
            <summary>
            Gets this known folder's security attributes.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.FileAttributes">
            <summary>
            Gets this known folder's file attributes, 
            such as "read-only".
            </summary>
            <value>A <see cref="T:System.IO.FileAttributes"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.DefinitionOptions">
            <summary>
            Gets an value that describes this known folder's behaviors.
            </summary>
            <value>A <see cref="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.DefinitionOptions"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.FolderTypeId">
            <summary>
            Gets the unique identifier for this known folder's type.
            </summary>
            <value>A <see cref="T:System.Guid"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.FolderType">
            <summary>
            Gets a string representation of this known folder's type.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.FolderId">
            <summary>
            Gets the unique identifier for this known folder.
            </summary>
            <value>A <see cref="T:System.Guid"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.PathExists">
            <summary>
            Gets a value that indicates whether this known folder's path exists on the computer. 
            </summary>
            <value>A bool<see cref="T:System.Boolean"/> value.</value>
            <remarks>If this property value is <b>false</b>, 
            the folder might be a virtual folder (<see cref="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.Category"/> property will
            be <see cref="F:Microsoft.WindowsAPICodePack.Shell.FolderCategory.Virtual"/> for virtual folders)</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.FileSystemKnownFolder.Redirection">
            <summary>
            Gets a value that states whether this known folder 
            can have its path set to a new value, 
            including any restrictions on the redirection.
            </summary>
            <value>A <see cref="T:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities"/> value.</value>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailProxyWindow.Finalize">
            <summary>
            
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailProxyWindow.System#IDisposable#Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailEventArgs">
            <summary>
            Event args for various Tabbed Thumbnail related events
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailEventArgs.#ctor(System.IntPtr,Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail)">
            <summary>
            Creates a Event Args for a specific tabbed thumbnail event.
            </summary>
            <param name="windowHandle">Window handle for the control/window related to the event</param>
            <param name="preview">TabbedThumbnail related to this event</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailEventArgs.#ctor(System.Windows.UIElement,Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail)">
            <summary>
            Creates a Event Args for a specific tabbed thumbnail event.
            </summary>
            <param name="windowsControl">WPF Control (UIElement) related to the event</param>
            <param name="preview">TabbedThumbnail related to this event</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailEventArgs.WindowHandle">
            <summary>
            Gets the Window handle for the specific control/window that is related to this event.
            </summary>
            <remarks>For WPF Controls (UIElement) the WindowHandle will be IntPtr.Zero. 
            Check the WindowsControl property to get the specific control associated with this event.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailEventArgs.WindowsControl">
            <summary>
            Gets the WPF Control (UIElement) that is related to this event. This property may be null
            for non-WPF applications.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailEventArgs.TabbedThumbnail">
            <summary>
            Gets the TabbedThumbnail associated with this event.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFilter">
            <summary>
            Stores the file extensions used when filtering files in File Open and File Save dialogs.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFilter.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFilter.#ctor(System.String,System.String)">
            <summary>
            Creates a new instance of this class with the specified display name and 
            file extension list.
            </summary>
            <param name="rawDisplayName">The name of this filter.</param>
            <param name="extensionList">The list of extensions in 
            this filter. See remarks.</param>
            <remarks>The <paramref name="extensionList"/> can use a semicolon(";") 
            or comma (",") to separate extensions. Extensions can be prefaced 
            with a period (".") or with the file wild card specifier "*.".</remarks>
            <permission cref="T:System.ArgumentNullException">
            The <paramref name="extensionList"/> cannot be null or a 
            zero-length string. 
            </permission>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFilter.GetFilterSpec">
            <summary>
            Internal helper that generates a single filter 
            specification for this filter, used by the COM API.
            </summary>
            <returns>Filter specification for this filter</returns>
            
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFilter.ToString">
            <summary>
            Returns a string representation for this filter that includes
            the display name and the list of extensions.
            </summary>
            <returns>A <see cref="T:System.String"/>.</returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFilter.DisplayName">
            <summary>
            Gets or sets the display name for this filter.
            </summary>
            <permission cref="T:System.ArgumentNullException">
            The value for this property cannot be set to null or a 
            zero-length string. 
            </permission>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFilter.Extensions">
            <summary>
            Gets a collection of the individual extensions 
            described by this filter.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFilter.ShowExtensions">
            <summary>
            Gets or sets a value that controls whether the extensions are displayed.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.FolderProperties">
            <summary>
            Structure used internally to store property values for 
            a known folder. This structure holds the information
            returned in the FOLDER_DEFINITION structure, and 
            resources referenced by fields in NativeFolderDefinition,
            such as icon and tool tip.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarWindowManager.DispatchMessage(System.Windows.Forms.Message@,Microsoft.WindowsAPICodePack.Taskbar.TaskbarWindow)">
            <summary>
            Dispatches a window message so that the appropriate events
            can be invoked. This is used for the Taskbar's thumbnail toolbar feature.
            </summary>
            <param name="m">The window message, typically obtained
            from a Windows Forms or WPF window procedure.</param>
            <param name="taskbarWindow">Taskbar window for which we are intercepting the messages</param>
            <returns>Returns true if this method handles the window message</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarWindowManager.GrabBitmap(Microsoft.WindowsAPICodePack.Taskbar.TaskbarWindow,System.Drawing.Size)">
            <summary>
            Helper function to capture a bitmap for a given window handle or incase of WPF app,
            an UIElement.
            </summary>
            <param name="taskbarWindow">The proxy window for which a bitmap needs to be created</param>
            <param name="requestedSize">Size for the requested bitmap image</param>
            <returns>Bitmap captured from the window handle or UIElement. Null if the window is hidden or it's size is zero.</returns>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.GETPROPERTYSTOREFLAGS">
            <summary>
            Indicate flags that modify the property store object retrieved by methods 
            that create a property store, such as IShellItem2::GetPropertyStore or 
            IPropertyStoreFactory::GetPropertyStore.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.GETPROPERTYSTOREFLAGS.GPS_DEFAULT">
            <summary>
            Meaning to a calling process: Return a read-only property store that contains all 
            properties. Slow items (offline files) are not opened. 
            Combination with other flags: Can be overridden by other flags.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.GETPROPERTYSTOREFLAGS.GPS_HANDLERPROPERTIESONLY">
            <summary>
            Meaning to a calling process: Include only properties directly from the property
            handler, which opens the file on the disk, network, or device. Meaning to a file 
            folder: Only include properties directly from the handler.
            
            Meaning to other folders: When delegating to a file folder, pass this flag on 
            to the file folder; do not do any multiplexing (MUX). When not delegating to a 
            file folder, ignore this flag instead of returning a failure code.
            
            Combination with other flags: Cannot be combined with GPS_TEMPORARY, 
            GPS_FASTPROPERTIESONLY, or GPS_BESTEFFORT.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.GETPROPERTYSTOREFLAGS.GPS_READWRITE">
            <summary>
            Meaning to a calling process: Can write properties to the item. 
            Note: The store may contain fewer properties than a read-only store. 
            
            Meaning to a file folder: ReadWrite.
            
            Meaning to other folders: ReadWrite. Note: When using default MUX, 
            return a single unmultiplexed store because the default MUX does not support ReadWrite.
            
            Combination with other flags: Cannot be combined with GPS_TEMPORARY, GPS_FASTPROPERTIESONLY, 
            GPS_BESTEFFORT, or GPS_DELAYCREATION. Implies GPS_HANDLERPROPERTIESONLY.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.GETPROPERTYSTOREFLAGS.GPS_TEMPORARY">
            <summary>
            Meaning to a calling process: Provides a writable store, with no initial properties, 
            that exists for the lifetime of the Shell item instance; basically, a property bag 
            attached to the item instance. 
            
            Meaning to a file folder: Not applicable. Handled by the Shell item.
            
            Meaning to other folders: Not applicable. Handled by the Shell item.
            
            Combination with other flags: Cannot be combined with any other flag. Implies GPS_READWRITE
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.GETPROPERTYSTOREFLAGS.GPS_FASTPROPERTIESONLY">
            <summary>
            Meaning to a calling process: Provides a store that does not involve reading from the 
            disk or network. Note: Some values may be different, or missing, compared to a store 
            without this flag. 
            
            Meaning to a file folder: Include the "innate" and "fallback" stores only. Do not load the handler.
            
            Meaning to other folders: Include only properties that are available in memory or can 
            be computed very quickly (no properties from disk, network, or peripheral IO devices). 
            This is normally only data sources from the IDLIST. When delegating to other folders, pass this flag on to them.
            
            Combination with other flags: Cannot be combined with GPS_TEMPORARY, GPS_READWRITE, 
            GPS_HANDLERPROPERTIESONLY, or GPS_DELAYCREATION.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.GETPROPERTYSTOREFLAGS.GPS_OPENSLOWITEM">
            <summary>
            Meaning to a calling process: Open a slow item (offline file) if necessary. 
            Meaning to a file folder: Retrieve a file from offline storage, if necessary. 
            Note: Without this flag, the handler is not created for offline files.
            
            Meaning to other folders: Do not return any properties that are very slow.
            
            Combination with other flags: Cannot be combined with GPS_TEMPORARY or GPS_FASTPROPERTIESONLY.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.GETPROPERTYSTOREFLAGS.GPS_DELAYCREATION">
            <summary>
            Meaning to a calling process: Delay memory-intensive operations, such as file access, until 
            a property is requested that requires such access. 
            
            Meaning to a file folder: Do not create the handler until needed; for example, either 
            GetCount/GetAt or GetValue, where the innate store does not satisfy the request. 
            Note: GetValue might fail due to file access problems.
            
            Meaning to other folders: If the folder has memory-intensive properties, such as 
            delegating to a file folder or network access, it can optimize performance by 
            supporting IDelayedPropertyStoreFactory and splitting up its properties into a 
            fast and a slow store. It can then use delayed MUX to recombine them.
            
            Combination with other flags: Cannot be combined with GPS_TEMPORARY or 
            GPS_READWRITE
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.GETPROPERTYSTOREFLAGS.GPS_BESTEFFORT">
            <summary>
            Meaning to a calling process: Succeed at getting the store, even if some 
            properties are not returned. Note: Some values may be different, or missing,
            compared to a store without this flag. 
            
            Meaning to a file folder: Succeed and return a store, even if the handler or 
            innate store has an error during creation. Only fail if substores fail.
            
            Meaning to other folders: Succeed on getting the store, even if some properties 
            are not returned.
            
            Combination with other flags: Cannot be combined with GPS_TEMPORARY, 
            GPS_READWRITE, or GPS_HANDLERPROPERTIESONLY.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.GETPROPERTYSTOREFLAGS.GPS_MASK_VALID">
            <summary>
            Mask for valid GETPROPERTYSTOREFLAGS values.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_CANCOPY">
            <summary>
            The specified items can be copied.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_CANMOVE">
            <summary>
            The specified items can be moved.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_CANLINK">
            <summary>
            Shortcuts can be created for the specified items. This flag has the same value as DROPEFFECT. 
            The normal use of this flag is to add a Create Shortcut item to the shortcut menu that is displayed 
            during drag-and-drop operations. However, SFGAO_CANLINK also adds a Create Shortcut item to the Microsoft 
            Windows Explorer's File menu and to normal shortcut menus. 
            If this item is selected, your application's IContextMenu::InvokeCommand is invoked with the lpVerb 
            member of the CMINVOKECOMMANDINFO structure set to "link." Your application is responsible for creating the link.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_STORAGE">
            <summary>
            The specified items can be bound to an IStorage interface through IShellFolder::BindToObject.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_CANRENAME">
            <summary>
            The specified items can be renamed.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_CANDELETE">
            <summary>
            The specified items can be deleted.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_HASPROPSHEET">
            <summary>
            The specified items have property sheets.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_DROPTARGET">
            <summary>
            The specified items are drop targets.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_CAPABILITYMASK">
            <summary>
            This flag is a mask for the capability flags.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_SYSTEM">
            <summary>
            Windows 7 and later. The specified items are system items.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_ENCRYPTED">
            <summary>
            The specified items are encrypted.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_ISSLOW">
            <summary>
            Indicates that accessing the object = through IStream or other storage interfaces, 
            is a slow operation. 
            Applications should avoid accessing items flagged with SFGAO_ISSLOW.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_GHOSTED">
            <summary>
            The specified items are ghosted icons.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_LINK">
            <summary>
            The specified items are shortcuts.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_SHARE">
            <summary>
            The specified folder objects are shared.
            </summary>    
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_READONLY">
            <summary>
            The specified items are read-only. In the case of folders, this means 
            that new items cannot be created in those folders.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_HIDDEN">
            <summary>
            The item is hidden and should not be displayed unless the 
            Show hidden files and folders option is enabled in Folder Settings.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_DISPLAYATTRMASK">
            <summary>
            This flag is a mask for the display attributes.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_FILESYSANCESTOR">
            <summary>
            The specified folders contain one or more file system folders.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_FOLDER">
            <summary>
            The specified items are folders.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_FILESYSTEM">
            <summary>
            The specified folders or file objects are part of the file system 
            that is, they are files, directories, or root directories).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_HASSUBFOLDER">
            <summary>
            The specified folders have subfolders = and are, therefore, 
            expandable in the left pane of Windows Explorer).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_CONTENTSMASK">
            <summary>
            This flag is a mask for the contents attributes.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_VALIDATE">
            <summary>
            When specified as input, SFGAO_VALIDATE instructs the folder to validate that the items 
            pointed to by the contents of apidl exist. If one or more of those items do not exist, 
            IShellFolder::GetAttributesOf returns a failure code. 
            When used with the file system folder, SFGAO_VALIDATE instructs the folder to discard cached 
            properties retrieved by clients of IShellFolder2::GetDetailsEx that may 
            have accumulated for the specified items.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_REMOVABLE">
            <summary>
            The specified items are on removable media or are themselves removable devices.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_COMPRESSED">
            <summary>
            The specified items are compressed.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_BROWSABLE">
            <summary>
            The specified items can be browsed in place.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_NONENUMERATED">
            <summary>
            The items are nonenumerated items.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_NEWCONTENT">
            <summary>
            The objects contain new content.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_CANMONIKER">
            <summary>
            It is possible to create monikers for the specified file objects or folders.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_HASSTORAGE">
            <summary>
            Not supported.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_STREAM">
            <summary>
            Indicates that the item has a stream associated with it that can be accessed 
            by a call to IShellFolder::BindToObject with IID_IStream in the riid parameter.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_STORAGEANCESTOR">
            <summary>
            Children of this item are accessible through IStream or IStorage. 
            Those children are flagged with SFGAO_STORAGE or SFGAO_STREAM.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_STORAGECAPMASK">
            <summary>
            This flag is a mask for the storage capability attributes.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.SFGAO.SFGAO_PKEYSFGAOMASK">
            <summary>
            Mask used by PKEY_SFGAOFlags to remove certain values that are considered 
            to cause slow calculations or lack context. 
            Equal to SFGAO_VALIDATE | SFGAO_ISSLOW | SFGAO_HASSUBFOLDER.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM">
            <summary>
            The STGM constants are flags that indicate 
            conditions for creating and deleting the object and access modes 
            for the object. 
            
            You can combine these flags, but you can only choose one flag 
            from each group of related flags. Typically one flag from each 
            of the access and sharing groups must be specified for all 
            functions and methods which use these constants. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.Direct">
            <summary>
            Indicates that, in direct mode, each change to a storage 
            or stream element is written as it occurs.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.Transacted">
            <summary>
            Indicates that, in transacted mode, changes are buffered 
            and written only if an explicit commit operation is called. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.Simple">
            <summary>
            Provides a faster implementation of a compound file 
            in a limited, but frequently used, case. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.Read">
            <summary>
            Indicates that the object is read-only, 
            meaning that modifications cannot be made.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.Write">
            <summary>
            Enables you to save changes to the object, 
            but does not permit access to its data. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.ReadWrite">
            <summary>
            Enables access and modification of object data.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.ShareDenyNone">
            <summary>
            Specifies that subsequent openings of the object are 
            not denied read or write access. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.ShareDenyRead">
            <summary>
            Prevents others from subsequently opening the object in Read mode. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.ShareDenyWrite">
            <summary>
            Prevents others from subsequently opening the object 
            for Write or ReadWrite access.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.ShareExclusive">
            <summary>
            Prevents others from subsequently opening the object in any mode. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.Priority">
            <summary>
            Opens the storage object with exclusive access to the most 
            recently committed version.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.DeleteOnRelease">
            <summary>
            Indicates that the underlying file is to be automatically destroyed when the root 
            storage object is released. This feature is most useful for creating temporary files. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.NoScratch">
            <summary>
            Indicates that, in transacted mode, a temporary scratch file is usually used 
            to save modifications until the Commit method is called. 
            Specifying NoScratch permits the unused portion of the original file 
            to be used as work space instead of creating a new file for that purpose. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.Create">
            <summary>
            Indicates that an existing storage object 
            or stream should be removed before the new object replaces it. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.Convert">
            <summary>
            Creates the new object while preserving existing data in a stream named "Contents". 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.FailIfThere">
            <summary>
            Causes the create operation to fail if an existing object with the specified name exists.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.NoSnapshot">
            <summary>
            This flag is used when opening a storage object with Transacted 
            and without ShareExclusive or ShareDenyWrite. 
            In this case, specifying NoSnapshot prevents the system-provided 
            implementation from creating a snapshot copy of the file. 
            Instead, changes to the file are written to the end of the file. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellNativeMethods.STGM.DirectSwmr">
            <summary>
            Supports direct mode for single-writer, multireader file operations. 
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailScreenCapture">
            <summary>
            Helper class to capture a control or window as System.Drawing.Bitmap
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailScreenCapture.GrabWindowBitmap(System.IntPtr,System.Drawing.Size)">
            <summary>
            Captures a screenshot of the specified window at the specified
            bitmap size. <para/>NOTE: This method will not accurately capture controls
            that are hidden or obstructed (partially or completely) by another control (e.g. hidden tabs,
            or MDI child windows that are obstructed by other child windows/forms).
            </summary>
            <param name="hwnd">The window handle.</param>
            <param name="bitmapSize">The requested bitmap size.</param>
            <returns>A screen capture of the window.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailScreenCapture.GrabWindowBitmap(System.Windows.UIElement,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Grabs a snapshot of a WPF UIElement and returns the image as Bitmap.
            </summary>
            <param name="element">Represents the element to take the snapshot from.</param>
            <param name="dpiX">Represents the X DPI value used to capture this snapshot.</param>
            <param name="dpiY">Represents the Y DPI value used to capture this snapshot.</param>
            <param name="width">The requested bitmap width.</param>
            <param name="height">The requested bitmap height.</param>
            <returns>Returns the bitmap (PNG format).</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailScreenCapture.ResizeImageWithAspect(System.IntPtr,System.Int32,System.Int32,System.Boolean)">
            <summary>
            Resizes the given bitmap while maintaining the aspect ratio.
            </summary>
            <param name="originalHBitmap">Original/source bitmap</param>
            <param name="newWidth">Maximum width for the new image</param>
            <param name="maxHeight">Maximum height for the new image</param>
            <param name="resizeIfWider">If true and requested image is wider than the source, the new image is resized accordingly.</param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.WindowProperties">
            <summary>
            Helper class to modify properties for a given window
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.WindowProperties.SetWindowProperty(System.IntPtr,Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,System.String)">
            <summary>
            Sets a shell property for a given window
            </summary>
            <param name="propkey">The property to set</param>
            <param name="windowHandle">Handle to the window that the property will be set on</param>
            <param name="value">The value to set for the property</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.WindowProperties.SetWindowProperty(System.Windows.Window,Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,System.String)">
            <summary>
            Sets a shell property for a given window
            </summary>
            <param name="propkey">The property to set</param>
            <param name="window">Window that the property will be set on</param>
            <param name="value">The value to set for the property</param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser">
            <summary>
            This class is a wrapper around the Windows Explorer Browser control.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.Navigate(Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Clears the Explorer Browser of existing content, fills it with
            content from the specified container, and adds a new point to the Travel Log.
            </summary>
            <param name="shellObject">The shell container to navigate to.</param>
            <exception cref="T:System.Runtime.InteropServices.COMException">Will throw if navigation fails for any other reason.</exception>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.NavigateLogLocation(Microsoft.WindowsAPICodePack.Controls.NavigationLogDirection)">
            <summary>
            Navigates within the navigation log. This does not change the set of 
            locations in the navigation log.
            </summary>
            <param name="direction">Forward of Backward</param>
            <returns>True if the navigation succeeded, false if it failed for any reason.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.NavigateLogLocation(System.Int32)">
            <summary>
            Navigate within the navigation log. This does not change the set of 
            locations in the navigation log.
            </summary>
            <param name="navigationLogIndex">An index into the navigation logs Locations collection.</param>
            <returns>True if the navigation succeeded, false if it failed for any reason.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.#ctor">
            <summary>
            Initializes the ExplorerBorwser WinForms wrapper.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            Displays a placeholder for the explorer browser in design mode
            </summary>
            <param name="e">Contains information about the paint event.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.OnCreateControl">
            <summary>
            Creates and initializes the native ExplorerBrowser control
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.OnSizeChanged(System.EventArgs)">
            <summary>
            Sizes the native control to match the WinForms control wrapper.
            </summary>
            <param name="e">Contains information about the size changed event.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.OnHandleDestroyed(System.EventArgs)">
            <summary>
            Cleans up the explorer browser events+object when the window is being taken down.
            </summary>
            <param name="e">An EventArgs that contains event data.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.Microsoft#WindowsAPICodePack#Controls#IExplorerPaneVisibility#GetPaneState(System.Guid@,Microsoft.WindowsAPICodePack.Controls.EXPLORERPANESTATE@)">
            <summary>
            Controls the visibility of the explorer borwser panes
            </summary>
            <param name="explorerPane">a guid identifying the pane</param>
            <param name="peps">the pane state desired</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.GetCurrentViewMode">
            <summary>
            Returns the current view mode of the browser
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.GetFolderView2">
            <summary>
            Gets the IFolderView2 interface from the explorer browser.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.GetSelectedItemsArray">
            <summary>
            Gets the selected items in the explorer browser as an IShellItemArray
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.GetItemsArray">
            <summary>
            Gets the items in the ExplorerBrowser as an IShellItemArray
            </summary>
            <returns></returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.NavigationOptions">
            <summary>
            Options that control how the ExplorerBrowser navigates
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.ContentOptions">
            <summary>
            Options that control how the content of the ExplorerBorwser looks
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.Items">
            <summary>
            The set of ShellObjects in the Explorer Browser
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.SelectedItems">
            <summary>
            The set of selected ShellObjects in the Explorer Browser
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.NavigationLog">
            <summary>
            Contains the navigation history of the ExplorerBrowser
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.PropertyBagName">
            <summary>
            The name of the property bag used to persist changes to the ExplorerBrowser's view state.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.SelectionChanged">
            <summary>
            Fires when the SelectedItems collection changes. 
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.ItemsChanged">
            <summary>
            Fires when the Items colection changes. 
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.NavigationPending">
            <summary>
            Fires when a navigation has been initiated, but is not yet complete.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.NavigationComplete">
            <summary>
            Fires when a navigation has been 'completed': no NavigationPending listener 
            has cancelled, and the ExplorerBorwser has created a new view. The view 
            will be populated with new items asynchronously, and ItemsChanged will be 
            fired to reflect this some time later.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.NavigationFailed">
            <summary>
            Fires when either a NavigationPending listener cancels the navigation, or
            if the operating system determines that navigation is not possible.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.ViewEnumerationComplete">
            <summary>
            Fires when the ExplorerBorwser view has finished enumerating files.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser.ViewSelectedItemChanged">
            <summary>
            Fires when the item selected in the view has changed (i.e., a rename ).
            This is not the same as SelectionChanged.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailButtonClickedEventArgs">
            <summary>
            Event args for TabbedThumbnailButton.Click event
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailButtonClickedEventArgs.#ctor(System.IntPtr,Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton)">
            <summary>
            Creates a Event Args for the TabbedThumbnailButton.Click event
            </summary>
            <param name="windowHandle">Window handle for the control/window related to the event</param>
            <param name="button">Thumbnail toolbar button that was clicked</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailButtonClickedEventArgs.#ctor(System.Windows.UIElement,Microsoft.WindowsAPICodePack.Taskbar.ThumbnailToolbarButton)">
            <summary>
            Creates a Event Args for the TabbedThumbnailButton.Click event
            </summary>
            <param name="windowsControl">WPF Control (UIElement) related to the event</param>
            <param name="button">Thumbnail toolbar button that was clicked</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailButtonClickedEventArgs.WindowHandle">
            <summary>
            Gets the Window handle for the specific control/window that is related to this event.
            </summary>
            <remarks>For WPF Controls (UIElement) the WindowHandle will be IntPtr.Zero. 
            Check the WindowsControl property to get the specific control associated with this event.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailButtonClickedEventArgs.WindowsControl">
            <summary>
            Gets the WPF Control (UIElement) that is related to this event. This property may be null
            for non-WPF applications.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.ThumbnailButtonClickedEventArgs.ThumbnailButton">
            <summary>
            Gets the ThumbnailToolbarButton that was clicked
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1">
            <summary>
            Defines a strongly-typed property object. 
            All writable property objects must be of this type 
            to be able to call the value setter.
            </summary>
            <typeparam name="T">The type of this property's value. 
            Because a property value can be empty, only nullable types 
            are allowed.</typeparam>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.#ctor(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription,Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Constructs a new Property object
            </summary>
            <param name="propertyKey"></param>
            <param name="description"></param>
            <param name="parent"></param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.#ctor(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription,Microsoft.WindowsAPICodePack.Shell.PropertySystem.IPropertyStore)">
            <summary>
            Constructs a new Property object
            </summary>
            <param name="propertyKey"></param>
            <param name="description"></param>
            <param name="propertyStore"></param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.TryFormatForDisplay(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat,System.String@)">
            <summary>
            Returns a formatted, Unicode string representation of a property value.
            </summary>
            <param name="format">One or more of the PropertyDescriptionFormat flags 
            that indicate the desired format.</param>
            <param name="formattedString">The formatted value as a string, or null if this property 
            cannot be formatted for display.</param>
            <returns>True if the method successfully locates the formatted string; otherwise 
            False.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.FormatForDisplay(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat)">
            <summary>
            Returns a formatted, Unicode string representation of a property value.
            </summary>
            <param name="format">One or more of the PropertyDescriptionFormat flags 
            that indicate the desired format.</param>
            <returns>The formatted value as a string, or null if this property 
            cannot be formatted for display.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.ClearValue">
            <summary>
            Clears the value of the property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.Value">
            <summary>
            Gets or sets the strongly-typed value of this property.
            The value of the property is cleared if the value is set to null.
            </summary>
            <exception cref="T:System.Runtime.InteropServices.COMException">
            If the property value cannot be retrieved or updated in the Property System</exception>
            <exception cref="T:System.NotSupportedException">If the type of this property is not supported; e.g. writing a binary object.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown if <see cref="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.AllowSetTruncatedValue"/> is false, and either 
            a string value was truncated or a numeric value was rounded.</exception>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.PropertyKey">
            <summary>
            Gets the property key identifying this property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.Description">
            <summary>
            Get the property description object.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.CanonicalName">
            <summary>
            Gets the case-sensitive name of a property as it is known to the system,
            regardless of its localized name.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.ValueAsObject">
            <summary>
            Gets the value for this property using the generic Object type.
            To obtain a specific type for this value, use the more type strong
            Property&lt;T&gt; class.
            Also, you can only set a value for this type using Property&lt;T&gt;
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.ValueType">
            <summary>
            Gets the associated runtime type.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.IconReference">
            <summary>
            Gets the image reference path and icon index associated with a property value (Windows 7 only).
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperty`1.AllowSetTruncatedValue">
            <summary>
            Gets or sets a value that determines if a value can be truncated. The default for this property is false.
            </summary>
            <remarks>
            An <see cref="T:System.ArgumentOutOfRangeException"/> will be thrown if
            this property is not set to true, and a property value was set
            but later truncated. 
            
            </remarks>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail">
            <summary>
            Represents a tabbed thumbnail on the taskbar for a given window or a control.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.#ctor(System.IntPtr,System.IntPtr)">
            <summary>
            Creates a new TabbedThumbnail with the given window handle of the parent and
            a child control/window's handle (e.g. TabPage or Panel)
            </summary>
            <param name="parentWindowHandle">Window handle of the parent window. 
            This window has to be a top-level window and the handle cannot be null or IntPtr.Zero</param>
            <param name="windowHandle">Window handle of the child control or window for which a tabbed 
            thumbnail needs to be displayed</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.#ctor(System.IntPtr,System.Windows.Forms.Control)">
            <summary>
            Creates a new TabbedThumbnail with the given window handle of the parent and
            a child control (e.g. TabPage or Panel)
            </summary>
            <param name="parentWindowHandle">Window handle of the parent window. 
            This window has to be a top-level window and the handle cannot be null or IntPtr.Zero</param>
            <param name="control">Child control for which a tabbed thumbnail needs to be displayed</param>
            <remarks>This method can also be called when using a WindowsFormHost control in a WPF application.
             Call this method with the main WPF Window's handle, and windowsFormHost.Child control.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.#ctor(System.Windows.Window,System.Windows.UIElement,System.Windows.Vector)">
            <summary>
            Creates a new TabbedThumbnail with the given window handle of the parent and
            a WPF child Window. For WindowsFormHost control, use TabbedThumbnail(IntPtr, Control) overload and pass
            the WindowsFormHost.Child as the second parameter.
            </summary>
            <param name="parentWindow">Parent window for the UIElement control. 
            This window has to be a top-level window and the handle cannot be null</param>
            <param name="windowsControl">WPF Control (UIElement) for which a tabbed thumbnail needs to be displayed</param>
            <param name="peekOffset">Offset point used for displaying the peek bitmap. This setting is
            recomended for hidden WPF controls as it is difficult to calculate their offset.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.SetWindowIcon(System.Drawing.Icon)">
            <summary>
            Sets the window icon for this thumbnail preview
            </summary>
            <param name="icon">System.Drawing.Icon for the window/control associated with this preview</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.SetWindowIcon(System.IntPtr)">
            <summary>
            Sets the window icon for this thumbnail preview
            </summary>
            <param name="hIcon">Icon handle (hIcon) for the window/control associated with this preview</param>
            <remarks>This method will not release the icon handle. It is the caller's responsibility to release the icon handle.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.SetImage(System.Drawing.Bitmap)">
            <summary>
            Override the thumbnail and peek bitmap. 
            By providing this bitmap manually, Thumbnail Window manager will provide the 
            Desktop Window Manager (DWM) this bitmap instead of rendering one automatically.
            Use this property to update the bitmap whenever the control is updated and the user
            needs to be shown a new thumbnail on the taskbar preview (or aero peek).
            </summary>
            <param name="bitmap">The image to use.</param>
            <remarks>
            If the bitmap doesn't have the right dimensions, the DWM may scale it or not 
            render certain areas as appropriate - it is the user's responsibility
            to render a bitmap with the proper dimensions.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.SetImage(System.Windows.Media.Imaging.BitmapSource)">
            <summary>
            Override the thumbnail and peek bitmap. 
            By providing this bitmap manually, Thumbnail Window manager will provide the 
            Desktop Window Manager (DWM) this bitmap instead of rendering one automatically.
            Use this property to update the bitmap whenever the control is updated and the user
            needs to be shown a new thumbnail on the taskbar preview (or aero peek).
            </summary>
            <param name="bitmapSource">The image to use.</param>
            <remarks>
            If the bitmap doesn't have the right dimensions, the DWM may scale it or not 
            render certain areas as appropriate - it is the user's responsibility
            to render a bitmap with the proper dimensions.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.SetImage(System.IntPtr)">
            <summary>
            Override the thumbnail and peek bitmap. 
            By providing this bitmap manually, Thumbnail Window manager will provide the 
            Desktop Window Manager (DWM) this bitmap instead of rendering one automatically.
            Use this property to update the bitmap whenever the control is updated and the user
            needs to be shown a new thumbnail on the taskbar preview (or aero peek).
            </summary>
            <param name="hBitmap">A bitmap handle for the image to use.
            <para>When the TabbedThumbnail is finalized, this class will delete the provided hBitmap.</para></param>
            <remarks>
            If the bitmap doesn't have the right dimensions, the DWM may scale it or not 
            render certain areas as appropriate - it is the user's responsibility
            to render a bitmap with the proper dimensions.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.InvalidatePreview">
            <summary>
            Invalidate any existing thumbnail preview. Calling this method
            will force DWM to request a new bitmap next time user previews the thumbnails
            or requests Aero peek preview.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.Finalize">
            <summary>
            
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.Dispose(System.Boolean)">
            <summary>
            Release the native objects.
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.TitleChanged">
            <summary>
            This event is raised when the Title property changes.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.TooltipChanged">
            <summary>
            This event is raised when the Tooltip property changes.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.Title">
            <summary>
            Title for the window shown as the taskbar thumbnail.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.Tooltip">
            <summary>
            Tooltip to be shown for this thumbnail on the taskbar. 
            By default this is full title of the window shown on the taskbar.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.ClippingRectangle">
            <summary>
            Specifies that only a portion of the window's client area
            should be used in the window's thumbnail.
            <para>A value of null will clear the clipping area and use the default thumbnail.</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.DisplayFrameAroundBitmap">
            <summary>
            Specifies whether a standard window frame will be displayed
            around the bitmap.  If the bitmap represents a top-level window,
            you would probably set this flag to <b>true</b>.  If the bitmap
            represents a child window (or a frameless window), you would
            probably set this flag to <b>false</b>.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.PeekOffset">
            <summary>
            Gets or sets the offset used for displaying the peek bitmap. This setting is
            recomended for hidden WPF controls as it is difficult to calculate their offset.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.TabbedThumbnailClosed">
            <summary>
            The event that occurs when a tab is closed on the taskbar thumbnail preview.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.TabbedThumbnailMaximized">
            <summary>
            The event that occurs when a tab is maximized via the taskbar thumbnail preview (context menu).
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.TabbedThumbnailMinimized">
            <summary>
            The event that occurs when a tab is minimized via the taskbar thumbnail preview (context menu).
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.TabbedThumbnailActivated">
            <summary>
            The event that occurs when a tab is activated (clicked) on the taskbar thumbnail preview.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail.TabbedThumbnailBitmapRequested">
            <summary>
            The event that occurs when a thumbnail or peek bitmap is requested by the user.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1">
            <summary>
            Represents a collection of jump list items.
            </summary>
            <typeparam name="T">The type of elements in this collection.</typeparam>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1.Add(`0)">
            <summary>
            Adds the specified item to this collection.
            </summary>
            <param name="item">The item to add.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1.Remove(`0)">
            <summary>
            Removes the first instance of the specified item from the collection.
            </summary>
            <param name="item">The item to remove.</param>
            <returns><b>true</b> if an item was removed, otherwise <b>false</b> if no items were removed.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1.Clear">
            <summary>
            Clears all items from this collection.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1.Contains(`0)">
            <summary>
            Determines if this collection contains the specified item.
            </summary>
            <param name="item">The search item.</param>
            <returns><b>true</b> if an item was found, otherwise <b>false</b>.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1.CopyTo(`0[],System.Int32)">
            <summary>
            Copies this collection to a compatible one-dimensional array,
            starting at the specified index of the target array.
            </summary>
            <param name="array">The array name.</param>
            <param name="index">The index of the starting element.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Returns an enumerator that iterates through a collection.
            </summary>
            <returns>An enumerator to iterate through this collection.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
            <summary>
            Returns an enumerator that iterates through a collection of a specified type.
            </summary>
            <returns>An enumerator to iterate through this collection.</returns>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1.CollectionChanged">
            <summary>
            Occurs anytime a change is made to the underlying collection.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1.IsReadOnly">
            <summary>
            Gets or sets a value that determines if this collection is read-only.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListItemCollection`1.Count">
            <summary>
            Gets a count of the items currently in this collection.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyStoreItems">
            <summary>
            Base class for all the strongly-typed properties
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties">
            <summary>
            Defines a partial class that implements helper methods for retrieving Shell properties
            using a canonical name, property key, or a strongly-typed property. Also provides
            access to all the strongly-typed system properties and default properties collections.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.GetProperty(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey)">
            <summary>
            Returns a property available in the default property collection using 
            the given property key.
            </summary>
            <param name="key">The property key.</param>
            <returns>An IShellProperty.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.GetProperty(System.String)">
            <summary>
            Returns a property available in the default property collection using 
            the given canonical name.
            </summary>
            <param name="canonicalName">The canonical name.</param>
            <returns>An IShellProperty.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.GetProperty``1(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey)">
            <summary>
            Returns a strongly typed property available in the default property collection using 
            the given property key.
            </summary>
            <typeparam name="T">The type of property to retrieve.</typeparam>
            <param name="key">The property key.</param>
            <returns>A strongly-typed ShellProperty for the given property key.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.GetProperty``1(System.String)">
            <summary>
            Returns a strongly typed property available in the default property collection using 
            the given canonical name.
            </summary>
            <typeparam name="T">The type of property to retrieve.</typeparam>
            <param name="canonicalName">The canonical name.</param>
            <returns>A strongly-typed ShellProperty for the given canonical name.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.GetPropertyWriter">
            <summary>
            Returns the shell property writer used when writing multiple properties.
            </summary>
            <returns>A ShellPropertyWriter.</returns>
            <remarks>Use the Using pattern with the returned ShellPropertyWriter or
            manually call the Close method on the writer to commit the changes 
            and dispose the writer</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.System">
            <summary>
            Gets all the properties for the system through an accessor.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.DefaultPropertyCollection">
            <summary>
            Gets the collection of all the default properties for this item.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem">
            <summary>
            .System Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.AcquisitionID">
             <summary>
             <para>Name:     System.AcquisitionID -- PKEY_AcquisitionID</para>
             <para>Description: Hash to determine acquisition session.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {65A98875-3C80-40AB-ABBC-EFDAF77DBEE2}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ApplicationName">
             <summary>
             <para>Name:     System.ApplicationName -- PKEY_ApplicationName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 18 (PIDSI_APPNAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Author">
             <summary>
             <para>Name:     System.Author -- PKEY_Author</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 4 (PIDSI_AUTHOR)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Capacity">
             <summary>
             <para>Name:     System.Capacity -- PKEY_Capacity</para>
             <para>Description: The amount of total space in bytes.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 3 (PID_VOLUME_CAPACITY)  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Category">
             <summary>
             <para>Name:     System.Category -- PKEY_Category</para>
             <para>Description: Legacy code treats this as VT_LPSTR.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 2 (PIDDSI_CATEGORY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Comment">
             <summary>
             <para>Name:     System.Comment -- PKEY_Comment</para>
             <para>Description: Comments.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 6 (PIDSI_COMMENTS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Company">
             <summary>
             <para>Name:     System.Company -- PKEY_Company</para>
             <para>Description: The company or publisher.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 15 (PIDDSI_COMPANY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ComputerName">
             <summary>
             <para>Name:     System.ComputerName -- PKEY_ComputerName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 5 (PID_COMPUTERNAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ContainedItems">
             <summary>
             <para>Name:     System.ContainedItems -- PKEY_ContainedItems</para>
             <para>Description: The list of type of items, this item contains. For example, this item contains urls, attachments etc.
            This is represented as a vector array of GUIDs where each GUID represents certain type.
            </para>
             <para>Type:     Multivalue Guid -- VT_VECTOR | VT_CLSID  (For variants: VT_ARRAY | VT_CLSID)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 29</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ContentStatus">
            <summary>
            <para>Name:     System.ContentStatus -- PKEY_ContentStatus</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 27</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ContentType">
            <summary>
            <para>Name:     System.ContentType -- PKEY_ContentType</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 26</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Copyright">
             <summary>
             <para>Name:     System.Copyright -- PKEY_Copyright</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 11 (PIDMSI_COPYRIGHT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DateAccessed">
             <summary>
             <para>Name:     System.DateAccessed -- PKEY_DateAccessed</para>
             <para>Description: The time of the last access to the item.  The Indexing Service friendly name is 'access'.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 16 (PID_STG_ACCESSTIME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DateAcquired">
             <summary>
             <para>Name:     System.DateAcquired -- PKEY_DateAcquired</para>
             <para>Description: The time the file entered the system via acquisition.  This is not the same as System.DateImported.
            Examples are when pictures are acquired from a camera, or when music is purchased online.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {2CBAA8F5-D81F-47CA-B17A-F8D822300131}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DateArchived">
            <summary>
            <para>Name:     System.DateArchived -- PKEY_DateArchived</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {43F8D7B7-A444-4F87-9383-52271C9B915C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DateCompleted">
            <summary>
            <para>Name:     System.DateCompleted -- PKEY_DateCompleted</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {72FAB781-ACDA-43E5-B155-B2434F85E678}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DateCreated">
             <summary>
             <para>Name:     System.DateCreated -- PKEY_DateCreated</para>
             <para>Description: The date and time the item was created. The Indexing Service friendly name is 'create'.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 15 (PID_STG_CREATETIME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DateImported">
             <summary>
             <para>Name:     System.DateImported -- PKEY_DateImported</para>
             <para>Description: The time the file is imported into a separate database.  This is not the same as System.DateAcquired.  (Eg, 2003:05:22 13:55:04)
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 18258</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DateModified">
             <summary>
             <para>Name:     System.DateModified -- PKEY_DateModified</para>
             <para>Description: The date and time of the last write to the item. The Indexing Service friendly name is 'write'.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 14 (PID_STG_WRITETIME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DescriptionID">
             <summary>
             <para>Name:     System.DescriptionID -- PKEY_DescriptionID</para>
             <para>Description: The contents of a SHDESCRIPTIONID structure as a buffer of bytes.
            </para>
             <para>Type:     Buffer -- VT_VECTOR | VT_UI1  (For variants: VT_ARRAY | VT_UI1)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 2 (PID_DESCRIPTIONID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DueDate">
            <summary>
            <para>Name:     System.DueDate -- PKEY_DueDate</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {3F8472B5-E0AF-4DB2-8071-C53FE76AE7CE}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.EndDate">
            <summary>
            <para>Name:     System.EndDate -- PKEY_EndDate</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {C75FAA05-96FD-49E7-9CB4-9F601082D553}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FileAllocationSize">
             <summary>
             <para>Name:     System.FileAllocationSize -- PKEY_FileAllocationSize</para>
             <para>Description: 
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 18 (PID_STG_ALLOCSIZE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FileAttributes">
             <summary>
             <para>Name:     System.FileAttributes -- PKEY_FileAttributes</para>
             <para>Description: This is the WIN32_FIND_DATA dwFileAttributes for the file-based item.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 13 (PID_STG_ATTRIBUTES)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FileCount">
             <summary>
             <para>Name:     System.FileCount -- PKEY_FileCount</para>
             <para>Description: 
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 12</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FileDescription">
             <summary>
             <para>Name:     System.FileDescription -- PKEY_FileDescription</para>
             <para>Description: This is a user-friendly description of the file.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 3 (PIDVSI_FileDescription)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FileExtension">
             <summary>
             <para>Name:     System.FileExtension -- PKEY_FileExtension</para>
             <para>Description: This is the file extension of the file based item, including the leading period.  
            
            If System.FileName is VT_EMPTY, then this property should be too.  Otherwise, it should be derived
            appropriately by the data source from System.FileName.  If System.FileName does not have a file 
            extension, this value should be VT_EMPTY.
            
            To obtain the type of any item (including an item that is not a file), use System.ItemType.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                ".txt"
                "\\server\share\mydir\goodnews.doc"   ".doc"
                "\\server\share\numbers.xls"          ".xls"
                "\\server\share\folder"               VT_EMPTY
                "c:\foo\MyFolder"                     VT_EMPTY
                [desktop]                             VT_EMPTY
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E4F10A3C-49E6-405D-8288-A23BD4EEAA6C}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FileFRN">
             <summary>
             <para>Name:     System.FileFRN -- PKEY_FileFRN</para>
             <para>Description: This is the unique file ID, also known as the File Reference Number. For a given file, this is the same value
            as is found in the structure variable FILE_ID_BOTH_DIR_INFO.FileId, via GetFileInformationByHandleEx().
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 21 (PID_STG_FRN)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FileName">
             <summary>
             <para>Name:     System.FileName -- PKEY_FileName</para>
             <para>Description: This is the file name (including extension) of the file.
            
            It is possible that the item might not exist on a filesystem (ie, it may not be opened 
            using CreateFile).  Nonetheless, if the item is represented as a file from the logical sense 
            (and its name follows standard Win32 file-naming syntax), then the data source should emit this property.
            
            If an item is not a file, then the value for this property is VT_EMPTY.  See 
            System.ItemNameDisplay.
            
            This has the same value as System.ParsingName for items that are provided by the Shell's file folder.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "hello.txt"
                "\\server\share\mydir\goodnews.doc"   "goodnews.doc"
                "\\server\share\numbers.xls"          "numbers.xls"
                "c:\foo\MyFolder"                     "MyFolder"
                (email message)                       VT_EMPTY
                (song on portable device)             "song.wma"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {41CF5AE0-F75A-4806-BD87-59C7D9248EB9}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FileOwner">
             <summary>
             <para>Name:     System.FileOwner -- PKEY_FileOwner</para>
             <para>Description: This is the owner of the file, according to the file system.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Misc) {9B174B34-40FF-11D2-A27E-00C04FC30871}, 4 (PID_MISC_OWNER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FileVersion">
             <summary>
             <para>Name:     System.FileVersion -- PKEY_FileVersion</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 4 (PIDVSI_FileVersion)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FindData">
             <summary>
             <para>Name:     System.FindData -- PKEY_FindData</para>
             <para>Description: WIN32_FIND_DATAW in buffer of bytes.
            </para>
             <para>Type:     Buffer -- VT_VECTOR | VT_UI1  (For variants: VT_ARRAY | VT_UI1)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 0 (PID_FINDDATA)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FlagColor">
             <summary>
             <para>Name:     System.FlagColor -- PKEY_FlagColor</para>
             <para>Description: 
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {67DF94DE-0CA7-4D6F-B792-053A3E4F03CF}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FlagColorText">
             <summary>
             <para>Name:     System.FlagColorText -- PKEY_FlagColorText</para>
             <para>Description: This is the user-friendly form of System.FlagColor.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {45EAE747-8E2A-40AE-8CBF-CA52ABA6152A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FlagStatus">
             <summary>
             <para>Name:     System.FlagStatus -- PKEY_FlagStatus</para>
             <para>Description: Status of Flag.  Values: (0=none 1=white 2=Red).  cdoPR_FLAG_STATUS
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 12</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FlagStatusText">
             <summary>
             <para>Name:     System.FlagStatusText -- PKEY_FlagStatusText</para>
             <para>Description: This is the user-friendly form of System.FlagStatus.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {DC54FD2E-189D-4871-AA01-08C2F57A4ABC}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FreeSpace">
             <summary>
             <para>Name:     System.FreeSpace -- PKEY_FreeSpace</para>
             <para>Description: The amount of free space in bytes.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 2 (PID_VOLUME_FREE)  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.FullText">
             <summary>
             <para>Name:     System.FullText -- PKEY_FullText</para>
             <para>Description: This PKEY is used to specify search terms that should be applied as broadly as possible,
            across all valid properties for the data source(s) being searched.  It should not be
            emitted from a data source.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {1E3EE840-BC2B-476C-8237-2ACD1A839B22}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IdentityProperty">
            <summary>
            <para>Name:     System.Identity -- PKEY_Identity</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {A26F4AFC-7346-4299-BE47-EB1AE613139F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ImageParsingName">
            <summary>
            <para>Name:     System.ImageParsingName -- PKEY_ImageParsingName</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {D7750EE0-C6A4-48EC-B53E-B87B52E6D073}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Importance">
            <summary>
            <para>Name:     System.Importance -- PKEY_Importance</para>
            <para>Description: </para>
            <para>Type:     Int32 -- VT_I4</para>
            <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 11</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ImportanceText">
             <summary>
             <para>Name:     System.ImportanceText -- PKEY_ImportanceText</para>
             <para>Description: This is the user-friendly form of System.Importance.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A3B29791-7713-4E1D-BB40-17DB85F01831}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.InfoTipText">
             <summary>
             <para>Name:     System.InfoTipText -- PKEY_InfoTipText</para>
             <para>Description: The text (with formatted property values) to show in the infotip.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 17</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.InternalName">
             <summary>
             <para>Name:     System.InternalName -- PKEY_InternalName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 5 (PIDVSI_InternalName)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsAttachment">
             <summary>
             <para>Name:     System.IsAttachment -- PKEY_IsAttachment</para>
             <para>Description: Identifies if this item is an attachment.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {F23F425C-71A1-4FA8-922F-678EA4A60408}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsDefaultNonOwnerSaveLocation">
             <summary>
             <para>Name:     System.IsDefaultNonOwnerSaveLocation -- PKEY_IsDefaultNonOwnerSaveLocation</para>
             <para>Description: Identifies the default save location for a library for non-owners of the library
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsDefaultSaveLocation">
             <summary>
             <para>Name:     System.IsDefaultSaveLocation -- PKEY_IsDefaultSaveLocation</para>
             <para>Description: Identifies the default save location for a library for the owner of the library
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsDeleted">
            <summary>
            <para>Name:     System.IsDeleted -- PKEY_IsDeleted</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {5CDA5FC8-33EE-4FF3-9094-AE7BD8868C4D}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsEncrypted">
             <summary>
             <para>Name:     System.IsEncrypted -- PKEY_IsEncrypted</para>
             <para>Description: Is the item encrypted?
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {90E5E14E-648B-4826-B2AA-ACAF790E3513}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsFlagged">
            <summary>
            <para>Name:     System.IsFlagged -- PKEY_IsFlagged</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {5DA84765-E3FF-4278-86B0-A27967FBDD03}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsFlaggedComplete">
            <summary>
            <para>Name:     System.IsFlaggedComplete -- PKEY_IsFlaggedComplete</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {A6F360D2-55F9-48DE-B909-620E090A647C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsIncomplete">
             <summary>
             <para>Name:     System.IsIncomplete -- PKEY_IsIncomplete</para>
             <para>Description: Identifies if the message was not completely received for some error condition.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {346C8BD1-2E6A-4C45-89A4-61B78E8E700F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsLocationSupported">
             <summary>
             <para>Name:     System.IsLocationSupported -- PKEY_IsLocationSupported</para>
             <para>Description: A bool value to know if a location is supported (locally indexable, or remotely indexed).
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsPinnedToNameSpaceTree">
             <summary>
             <para>Name:     System.IsPinnedToNameSpaceTree -- PKEY_IsPinnedToNameSpaceTree</para>
             <para>Description: A bool value to know if a shell folder is pinned to the navigation pane
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsRead">
             <summary>
             <para>Name:     System.IsRead -- PKEY_IsRead</para>
             <para>Description: Has the item been read?
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsSearchOnlyItem">
             <summary>
             <para>Name:     System.IsSearchOnlyItem -- PKEY_IsSearchOnlyItem</para>
             <para>Description: Identifies if a location or a library is search only
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsSendToTarget">
             <summary>
             <para>Name:     System.IsSendToTarget -- PKEY_IsSendToTarget</para>
             <para>Description: Provided by certain shell folders. Return TRUE if the folder is a valid Send To target.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 33</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IsShared">
             <summary>
             <para>Name:     System.IsShared -- PKEY_IsShared</para>
             <para>Description: Is this item shared?  This only checks for ACLs that are not inherited.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {EF884C5B-2BFE-41BB-AAE5-76EEDF4F9902}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemAuthors">
             <summary>
             <para>Name:     System.ItemAuthors -- PKEY_ItemAuthors</para>
             <para>Description: This is the generic list of authors associated with an item. 
            
            For example, the artist name for a track is the item author.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D0A04F0A-462A-48A4-BB2F-3706E88DBD7D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemClassType">
            <summary>
            <para>Name:     System.ItemClassType -- PKEY_ItemClassType</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {048658AD-2DB8-41A4-BBB6-AC1EF1207EB1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemDate">
             <summary>
             <para>Name:     System.ItemDate -- PKEY_ItemDate</para>
             <para>Description: This is the main date for an item. The date of interest. 
            
            For example, for photos this maps to System.Photo.DateTaken.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {F7DB74B4-4287-4103-AFBA-F1B13DCD75CF}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemFolderNameDisplay">
             <summary>
             <para>Name:     System.ItemFolderNameDisplay -- PKEY_ItemFolderNameDisplay</para>
             <para>Description: This is the user-friendly display name of the parent folder of an item.
            
            If System.ItemFolderPathDisplay is VT_EMPTY, then this property should be too.  Otherwise, it 
            should be derived appropriately by the data source from System.ItemFolderPathDisplay.
            
            If the folder is a file folder, the value will be localized if a localized name is available.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "bar"
                "\\server\share\mydir\goodnews.doc"   "mydir"
                "\\server\share\numbers.xls"          "share"
                "c:\foo\MyFolder"                     "foo"
                "/Mailbox Account/Inbox/'Re: Hello!'" "Inbox"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 2 (PID_STG_DIRECTORY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemFolderPathDisplay">
             <summary>
             <para>Name:     System.ItemFolderPathDisplay -- PKEY_ItemFolderPathDisplay</para>
             <para>Description: This is the user-friendly display path of the parent folder of an item.
            
            If System.ItemPathDisplay is VT_EMPTY, then this property should be too.  Otherwise, it should 
            be derived appropriately by the data source from System.ItemPathDisplay.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "c:\foo\bar"
                "\\server\share\mydir\goodnews.doc"   "\\server\share\mydir"
                "\\server\share\numbers.xls"          "\\server\share"
                "c:\foo\MyFolder"                     "c:\foo"
                "/Mailbox Account/Inbox/'Re: Hello!'" "/Mailbox Account/Inbox"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemFolderPathDisplayNarrow">
             <summary>
             <para>Name:     System.ItemFolderPathDisplayNarrow -- PKEY_ItemFolderPathDisplayNarrow</para>
             <para>Description: This is the user-friendly display path of the parent folder of an item.  The format of the string
            should be tailored such that the folder name comes first, to optimize for a narrow viewing column.
            
            If the folder is a file folder, the value includes localized names if they are present.
            
            If System.ItemFolderPathDisplay is VT_EMPTY, then this property should be too.  Otherwise, it should
            be derived appropriately by the data source from System.ItemFolderPathDisplay.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "bar (c:\foo)"
                "\\server\share\mydir\goodnews.doc"   "mydir (\\server\share)"
                "\\server\share\numbers.xls"          "share (\\server)"
                "c:\foo\MyFolder"                     "foo (c:\)"
                "/Mailbox Account/Inbox/'Re: Hello!'" "Inbox (/Mailbox Account)"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {DABD30ED-0043-4789-A7F8-D013A4736622}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemName">
             <summary>
             <para>Name:     System.ItemName -- PKEY_ItemName</para>
             <para>Description: This is the base-name of the System.ItemNameDisplay.
            
            If the item is a file this property
            includes the extension in all cases, and will be localized if a localized name is available.
            
            If the item is a message, then the value of this property does not include the forwarding or
            reply prefixes (see System.ItemNamePrefix).
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6B8DA074-3B5C-43BC-886F-0A2CDCE00B6F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemNameDisplay">
             <summary>
             <para>Name:     System.ItemNameDisplay -- PKEY_ItemNameDisplay</para>
             <para>Description: This is the display name in "most complete" form.  This is the best effort unique representation
            of the name of an item that makes sense for end users to read.  It is the concatentation of
            System.ItemNamePrefix and System.ItemName.
            
            If the item is a file this property
            includes the extension in all cases, and will be localized if a localized name is available.
            
            There are acceptable cases when System.FileName is not VT_EMPTY, yet the value of this property 
            is completely different.  Email messages are a key example.  If the item is an email message, 
            the item name is likely the subject.  In that case, the value must be the concatenation of the
            System.ItemNamePrefix and System.ItemName.  Since the value of System.ItemNamePrefix excludes
            any trailing whitespace, the concatenation must include a whitespace when generating System.ItemNameDisplay.
            
            Note that this property is not guaranteed to be unique, but the idea is to promote the most likely
            candidate that can be unique and also makes sense for end users. For example, for documents, you
            might think about using System.Title as the System.ItemNameDisplay, but in practice the title of
            the documents may not be useful or unique enough to be of value as the sole System.ItemNameDisplay.  
            Instead, providing the value of System.FileName as the value of System.ItemNameDisplay is a better
            candidate.  In Windows Mail, the emails are stored in the file system as .eml files and the 
            System.FileName for those files are not human-friendly as they contain GUIDs. In this example, 
            promoting System.Subject as System.ItemNameDisplay makes more sense.
            
            Compatibility notes:
            
            Shell folder implementations on Vista: use PKEY_ItemNameDisplay for the name column when
            you want Explorer to call ISF::GetDisplayNameOf(SHGDN_NORMAL) to get the value of the name. Use
            another PKEY (like PKEY_ItemName) when you want Explorer to call either the folder's property store or
            ISF2::GetDetailsEx in order to get the value of the name.
            
            Shell folder implementations on XP: the first column needs to be the name column, and Explorer
            will call ISF::GetDisplayNameOf to get the value of the name.  The PKEY/SCID does not matter.
            
            Example values:
            
                File:          "hello.txt"
                Message:       "Re: Let's talk about Tom's argyle socks!"
                Device folder: "song.wma"
                Folder:        "Documents"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 10 (PID_STG_NAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemNamePrefix">
             <summary>
             <para>Name:     System.ItemNamePrefix -- PKEY_ItemNamePrefix</para>
             <para>Description: This is the prefix of an item, used for email messages.
            where the subject begins with "Re:" which is the prefix.
            
            If the item is a file, then the value of this property is VT_EMPTY.
            
            If the item is a message, then the value of this property is the forwarding or reply 
            prefixes (including delimiting colon, but no whitespace), or VT_EMPTY if there is no prefix.
            
            Example values:
            
            System.ItemNamePrefix    System.ItemName      System.ItemNameDisplay
            ---------------------    -------------------  ----------------------
            VT_EMPTY                 "Great day"          "Great day"
            "Re:"                    "Great day"          "Re: Great day"
            "Fwd: "                  "Monthly budget"     "Fwd: Monthly budget"
            VT_EMPTY                 "accounts.xls"       "accounts.xls"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D7313FF1-A77A-401C-8C99-3DBDD68ADD36}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemParticipants">
             <summary>
             <para>Name:     System.ItemParticipants -- PKEY_ItemParticipants</para>
             <para>Description: This is the generic list of people associated with an item and who contributed 
            to the item. 
            
            For example, this is the combination of people in the To list, Cc list and 
            sender of an email message.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D4D0AA16-9948-41A4-AA85-D97FF9646993}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemPathDisplay">
             <summary>
             <para>Name:     System.ItemPathDisplay -- PKEY_ItemPathDisplay</para>
             <para>Description: This is the user-friendly display path to the item.
            
            If the item is a file or folder this property
            includes the extension in all cases, and will be localized if a localized name is available.
            
            For other items,this is the user-friendly equivalent, assuming the item exists in hierarchical storage.
            
            Unlike System.ItemUrl, this property value does not include the URL scheme.
            
            To parse an item path, use System.ItemUrl or System.ParsingPath.  To reference shell 
            namespace items using shell APIs, use System.ParsingPath.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "c:\foo\bar\hello.txt"
                "\\server\share\mydir\goodnews.doc"   "\\server\share\mydir\goodnews.doc"
                "\\server\share\numbers.xls"          "\\server\share\numbers.xls"
                "c:\foo\MyFolder"                     "c:\foo\MyFolder"
                "/Mailbox Account/Inbox/'Re: Hello!'" "/Mailbox Account/Inbox/'Re: Hello!'"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 7</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemPathDisplayNarrow">
             <summary>
             <para>Name:     System.ItemPathDisplayNarrow -- PKEY_ItemPathDisplayNarrow</para>
             <para>Description: This is the user-friendly display path to the item. The format of the string should be 
            tailored such that the name comes first, to optimize for a narrow viewing column.
            
            If the item is a file, the value excludes the file extension, and includes localized names if they are present.
            If the item is a message, the value includes the System.ItemNamePrefix.
            
            To parse an item path, use System.ItemUrl or System.ParsingPath.
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "hello (c:\foo\bar)"
                "\\server\share\mydir\goodnews.doc"   "goodnews (\\server\share\mydir)"
                "\\server\share\folder"               "folder (\\server\share)"
                "c:\foo\MyFolder"                     "MyFolder (c:\foo)"
                "/Mailbox Account/Inbox/'Re: Hello!'" "Re: Hello! (/Mailbox Account/Inbox)"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemType">
             <summary>
             <para>Name:     System.ItemType -- PKEY_ItemType</para>
             <para>Description: This is the canonical type of the item and is intended to be programmatically
            parsed.
            
            If there is no canonical type, the value is VT_EMPTY.
            
            If the item is a file (ie, System.FileName is not VT_EMPTY), the value is the same as
            System.FileExtension.
            
            Use System.ItemTypeText when you want to display the type to end users in a view.  (If
             the item is a file, passing the System.ItemType value to PSFormatForDisplay will
             result in the same value as System.ItemTypeText.)
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                ".txt"
                "\\server\share\mydir\goodnews.doc"   ".doc"
                "\\server\share\folder"               "Directory"
                "c:\foo\MyFolder"                     "Directory"
                [desktop]                             "Folder"
                "/Mailbox Account/Inbox/'Re: Hello!'" "MAPI/IPM.Message"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 11</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemTypeText">
             <summary>
             <para>Name:     System.ItemTypeText -- PKEY_ItemTypeText</para>
             <para>Description: This is the user friendly type name of the item.  This is not intended to be
            programmatically parsed.
            
            If System.ItemType is VT_EMPTY, the value of this property is also VT_EMPTY.
            
            If the item is a file, the value of this property is the same as if you passed the 
            file's System.ItemType value to PSFormatForDisplay.
            
            This property should not be confused with System.Kind, where System.Kind is a high-level
            user friendly kind name. For example, for a document, System.Kind = "Document" and 
            System.Item.Type = ".doc" and System.Item.TypeText = "Microsoft Word Document"
            
            Example values:
            
                If the path is...                     The property value is...
                -----------------                     ------------------------
                "c:\foo\bar\hello.txt"                "Text File"
                "\\server\share\mydir\goodnews.doc"   "Microsoft Word Document"
                "\\server\share\folder"               "File Folder"
                "c:\foo\MyFolder"                     "File Folder"
                "/Mailbox Account/Inbox/'Re: Hello!'" "Outlook E-Mail Message"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 4 (PID_STG_STORAGETYPE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ItemUrl">
             <summary>
             <para>Name:     System.ItemUrl -- PKEY_ItemUrl</para>
             <para>Description: This always represents a well formed URL that points to the item.  
            
            To reference shell namespace items using shell APIs, use System.ParsingPath.
            
            Example values:
            
                Files:    "file:///c:/foo/bar/hello.txt"
                          "csc://{GUID}/..."
                Messages: "mapi://..."
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Query) {49691C90-7E17-101A-A91C-08002B2ECDA9}, 9 (DISPID_QUERY_VIRTUALPATH)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Keywords">
             <summary>
             <para>Name:     System.Keywords -- PKEY_Keywords</para>
             <para>Description: The keywords for the item.  Also referred to as tags.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 5 (PIDSI_KEYWORDS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Kind">
             <summary>
             <para>Name:     System.Kind -- PKEY_Kind</para>
             <para>Description: System.Kind is used to map extensions to various .Search folders.
            Extensions are mapped to Kinds at HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\KindMap
            The list of kinds is not extensible.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {1E3EE840-BC2B-476C-8237-2ACD1A839B22}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.KindText">
             <summary>
             <para>Name:     System.KindText -- PKEY_KindText</para>
             <para>Description: This is the user-friendly form of System.Kind.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {F04BEF95-C585-4197-A2B7-DF46FDC9EE6D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Language">
             <summary>
             <para>Name:     System.Language -- PKEY_Language</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 28</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.MileageInformation">
            <summary>
            <para>Name:     System.MileageInformation -- PKEY_MileageInformation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {FDF84370-031A-4ADD-9E91-0D775F1C6605}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.MIMEType">
             <summary>
             <para>Name:     System.MIMEType -- PKEY_MIMEType</para>
             <para>Description: The MIME type.  Eg, for EML files: 'message/rfc822'.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {0B63E350-9CCC-11D0-BCDB-00805FCCCE04}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.NamespaceCLSID">
             <summary>
             <para>Name:     System.NamespaceCLSID -- PKEY_NamespaceCLSID</para>
             <para>Description: The CLSID of the name space extension for an item, the object that implements IShellFolder for this item
            </para>
             <para>Type:     Guid -- VT_CLSID</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Null">
            <summary>
            <para>Name:     System.Null -- PKEY_Null</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {00000000-0000-0000-0000-000000000000}, 0</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.OfflineAvailability">
            <summary>
            <para>Name:     System.OfflineAvailability -- PKEY_OfflineAvailability</para>
            <para>Description: </para>
            <para>Type:     UInt32 -- VT_UI4</para>
            <para>FormatID: {A94688B6-7D9F-4570-A648-E3DFC0AB2B3F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.OfflineStatus">
            <summary>
            <para>Name:     System.OfflineStatus -- PKEY_OfflineStatus</para>
            <para>Description: </para>
            <para>Type:     UInt32 -- VT_UI4</para>
            <para>FormatID: {6D24888F-4718-4BDA-AFED-EA0FB4386CD8}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.OriginalFileName">
             <summary>
             <para>Name:     System.OriginalFileName -- PKEY_OriginalFileName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.OwnerSID">
             <summary>
             <para>Name:     System.OwnerSID -- PKEY_OwnerSID</para>
             <para>Description: SID of the user that owns the library.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {5D76B67F-9B3D-44BB-B6AE-25DA4F638A67}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ParentalRating">
             <summary>
             <para>Name:     System.ParentalRating -- PKEY_ParentalRating</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 21 (PIDMSI_PARENTAL_RATING)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ParentalRatingReason">
            <summary>
            <para>Name:     System.ParentalRatingReason -- PKEY_ParentalRatingReason</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {10984E0A-F9F2-4321-B7EF-BAF195AF4319}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ParentalRatingsOrganization">
            <summary>
            <para>Name:     System.ParentalRatingsOrganization -- PKEY_ParentalRatingsOrganization</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {A7FE0840-1344-46F0-8D37-52ED712A4BF9}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ParsingBindContext">
             <summary>
             <para>Name:     System.ParsingBindContext -- PKEY_ParsingBindContext</para>
             <para>Description: used to get the IBindCtx for an item for parsing
            </para>
             <para>Type:     Any -- VT_NULL  Legacy code may treat this as VT_UNKNOWN.</para>
             <para>FormatID: {DFB9A04D-362F-4CA3-B30B-0254B17B5B84}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ParsingName">
             <summary>
             <para>Name:     System.ParsingName -- PKEY_ParsingName</para>
             <para>Description: The shell namespace name of an item relative to a parent folder.  This name may be passed to 
            IShellFolder::ParseDisplayName() of the parent shell folder.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 24</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ParsingPath">
             <summary>
             <para>Name:     System.ParsingPath -- PKEY_ParsingPath</para>
             <para>Description: This is the shell namespace path to the item.  This path may be passed to 
            SHParseDisplayName to parse the path to the correct shell folder.
            
            If the item is a file, the value is identical to System.ItemPathDisplay.
            
            If the item cannot be accessed through the shell namespace, this value is VT_EMPTY.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 30</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.PerceivedType">
             <summary>
             <para>Name:     System.PerceivedType -- PKEY_PerceivedType</para>
             <para>Description: The perceived type of a shell item, based upon its canonical type.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.PercentFull">
             <summary>
             <para>Name:     System.PercentFull -- PKEY_PercentFull</para>
             <para>Description: The amount filled as a percentage, multiplied by 100 (ie, the valid range is 0 through 100).
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 5  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Priority">
             <summary>
             <para>Name:     System.Priority -- PKEY_Priority</para>
             <para>Description: 
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {9C1FCF74-2D97-41BA-B4AE-CB2E3661A6E4}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.PriorityText">
             <summary>
             <para>Name:     System.PriorityText -- PKEY_PriorityText</para>
             <para>Description: This is the user-friendly form of System.Priority.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D98BE98B-B86B-4095-BF52-9D23B2E0A752}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Project">
            <summary>
            <para>Name:     System.Project -- PKEY_Project</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {39A7F922-477C-48DE-8BC8-B28441E342E3}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ProviderItemID">
             <summary>
             <para>Name:     System.ProviderItemID -- PKEY_ProviderItemID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {F21D9941-81F0-471A-ADEE-4E74B49217ED}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Rating">
             <summary>
             <para>Name:     System.Rating -- PKEY_Rating</para>
             <para>Description: Indicates the users preference rating of an item on a scale of 1-99 (1-12 = One Star, 
            13-37 = Two Stars, 38-62 = Three Stars, 63-87 = Four Stars, 88-99 = Five Stars).
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 9 (PIDMSI_RATING)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.RatingText">
             <summary>
             <para>Name:     System.RatingText -- PKEY_RatingText</para>
             <para>Description: This is the user-friendly form of System.Rating.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {90197CA7-FD8F-4E8C-9DA3-B57E1E609295}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Sensitivity">
             <summary>
             <para>Name:     System.Sensitivity -- PKEY_Sensitivity</para>
             <para>Description: 
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {F8D3F6AC-4874-42CB-BE59-AB454B30716A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.SensitivityText">
             <summary>
             <para>Name:     System.SensitivityText -- PKEY_SensitivityText</para>
             <para>Description: This is the user-friendly form of System.Sensitivity.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D0C7F054-3F72-4725-8527-129A577CB269}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.SFGAOFlags">
             <summary>
             <para>Name:     System.SFGAOFlags -- PKEY_SFGAOFlags</para>
             <para>Description: IShellFolder::GetAttributesOf flags, with SFGAO_PKEYSFGAOMASK attributes masked out.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 25</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.SharedWith">
             <summary>
             <para>Name:     System.SharedWith -- PKEY_SharedWith</para>
             <para>Description: Who is the item shared with?
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {EF884C5B-2BFE-41BB-AAE5-76EEDF4F9902}, 200</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ShareUserRating">
             <summary>
             <para>Name:     System.ShareUserRating -- PKEY_ShareUserRating</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 12 (PIDMSI_SHARE_USER_RATING)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.SharingStatus">
             <summary>
             <para>Name:     System.SharingStatus -- PKEY_SharingStatus</para>
             <para>Description: What is the item's sharing status (not shared, shared, everyone (homegroup or everyone), or private)?
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {EF884C5B-2BFE-41BB-AAE5-76EEDF4F9902}, 300</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.SimpleRating">
             <summary>
             <para>Name:     System.SimpleRating -- PKEY_SimpleRating</para>
             <para>Description: Indicates the users preference rating of an item on a scale of 0-5 (0=unrated, 1=One Star, 2=Two Stars, 3=Three Stars,
            4=Four Stars, 5=Five Stars)
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {A09F084E-AD41-489F-8076-AA5BE3082BCA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Size">
             <summary>
             <para>Name:     System.Size -- PKEY_Size</para>
             <para>Description: 
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 12 (PID_STG_SIZE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.SoftwareUsed">
             <summary>
             <para>Name:     System.SoftwareUsed -- PKEY_SoftwareUsed</para>
             <para>Description: PropertyTagSoftwareUsed
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 305</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.SourceItem">
            <summary>
            <para>Name:     System.SourceItem -- PKEY_SourceItem</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {668CDFA5-7A1B-4323-AE4B-E527393A1D81}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.StartDate">
            <summary>
            <para>Name:     System.StartDate -- PKEY_StartDate</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {48FD6EC8-8A12-4CDF-A03E-4EC5A511EDDE}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Status">
            <summary>
            <para>Name:     System.Status -- PKEY_Status</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: (FMTID_IntSite) {000214A1-0000-0000-C000-000000000046}, 9</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Subject">
             <summary>
             <para>Name:     System.Subject -- PKEY_Subject</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 3 (PIDSI_SUBJECT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Thumbnail">
             <summary>
             <para>Name:     System.Thumbnail -- PKEY_Thumbnail</para>
             <para>Description: A data that represents the thumbnail in VT_CF format.
            </para>
             <para>Type:     Clipboard -- VT_CF</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 17 (PIDSI_THUMBNAIL)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ThumbnailCacheId">
             <summary>
             <para>Name:     System.ThumbnailCacheId -- PKEY_ThumbnailCacheId</para>
             <para>Description: Unique value that can be used as a key to cache thumbnails. The value changes when the name, volume, or data modified 
            of an item changes.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {446D16B1-8DAD-4870-A748-402EA43D788C}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.ThumbnailStream">
             <summary>
             <para>Name:     System.ThumbnailStream -- PKEY_ThumbnailStream</para>
             <para>Description: Data that represents the thumbnail in VT_STREAM format that GDI+/WindowsCodecs supports (jpg, png, etc).
            </para>
             <para>Type:     Stream -- VT_STREAM</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 27</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Title">
             <summary>
             <para>Name:     System.Title -- PKEY_Title</para>
             <para>Description: Title of item.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 2 (PIDSI_TITLE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.TotalFileSize">
             <summary>
             <para>Name:     System.TotalFileSize -- PKEY_TotalFileSize</para>
             <para>Description: 
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_ShellDetails) {28636AA6-953D-11D2-B5D6-00C04FD918D0}, 14</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Trademarks">
             <summary>
             <para>Name:     System.Trademarks -- PKEY_Trademarks</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 9 (PIDVSI_Trademarks)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.AppUserModel">
            <summary>
            System.AppUserModel Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Audio">
            <summary>
            System.Audio Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Calendar">
            <summary>
            System.Calendar Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Communication">
            <summary>
            System.Communication Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Computer">
            <summary>
            System.Computer Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Contact">
            <summary>
            System.Contact Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Device">
            <summary>
            System.Device Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DeviceInterface">
            <summary>
            System.DeviceInterface Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Devices">
            <summary>
            System.Devices Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Document">
            <summary>
            System.Document Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.DRM">
            <summary>
            System.DRM Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.GPS">
            <summary>
            System.GPS Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Identity">
            <summary>
            System.Identity Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.IdentityProvider">
            <summary>
            System.IdentityProvider Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Image">
            <summary>
            System.Image Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Journal">
            <summary>
            System.Journal Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.LayoutPattern">
            <summary>
            System.LayoutPattern Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Link">
            <summary>
            System.Link Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Media">
            <summary>
            System.Media Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Message">
            <summary>
            System.Message Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Music">
            <summary>
            System.Music Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Note">
            <summary>
            System.Note Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Photo">
            <summary>
            System.Photo Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.PropGroup">
            <summary>
            System.PropGroup Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.PropList">
            <summary>
            System.PropList Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.RecordedTV">
            <summary>
            System.RecordedTV Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Search">
            <summary>
            System.Search Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Shell">
            <summary>
            System.Shell Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Software">
            <summary>
            System.Software Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Sync">
            <summary>
            System.Sync Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Task">
            <summary>
            System.Task Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Video">
            <summary>
            System.Video Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystem.Volume">
            <summary>
            System.Volume Properties
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAppUserModel">
            <summary>
            System.AppUserModel Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAppUserModel.ExcludeFromShowInNewInstall">
            <summary>
            <para>Name:     System.AppUserModel.ExcludeFromShowInNewInstall -- PKEY_AppUserModel_ExcludeFromShowInNewInstall</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 8</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAppUserModel.ID">
            <summary>
            <para>Name:     System.AppUserModel.ID -- PKEY_AppUserModel_ID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 5</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAppUserModel.IsDestListSeparator">
            <summary>
            <para>Name:     System.AppUserModel.IsDestListSeparator -- PKEY_AppUserModel_IsDestListSeparator</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 6</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAppUserModel.PreventPinning">
            <summary>
            <para>Name:     System.AppUserModel.PreventPinning -- PKEY_AppUserModel_PreventPinning</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 9</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAppUserModel.RelaunchCommand">
            <summary>
            <para>Name:     System.AppUserModel.RelaunchCommand -- PKEY_AppUserModel_RelaunchCommand</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 2</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAppUserModel.RelaunchDisplayNameResource">
            <summary>
            <para>Name:     System.AppUserModel.RelaunchDisplayNameResource -- PKEY_AppUserModel_RelaunchDisplayNameResource</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 4</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAppUserModel.RelaunchIconResource">
            <summary>
            <para>Name:     System.AppUserModel.RelaunchIconResource -- PKEY_AppUserModel_RelaunchIconResource</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3}, 3</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio">
            <summary>
            System.Audio Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio.ChannelCount">
             <summary>
             <para>Name:     System.Audio.ChannelCount -- PKEY_Audio_ChannelCount</para>
             <para>Description: Indicates the channel count for the audio file.  Values: 1 (mono), 2 (stereo).
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 7 (PIDASI_CHANNEL_COUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio.Compression">
             <summary>
             <para>Name:     System.Audio.Compression -- PKEY_Audio_Compression</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 10 (PIDASI_COMPRESSION)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio.EncodingBitrate">
             <summary>
             <para>Name:     System.Audio.EncodingBitrate -- PKEY_Audio_EncodingBitrate</para>
             <para>Description: Indicates the average data rate in Hz for the audio file in "bits per second".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 4 (PIDASI_AVG_DATA_RATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio.Format">
             <summary>
             <para>Name:     System.Audio.Format -- PKEY_Audio_Format</para>
             <para>Description: Indicates the format of the audio file.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)  Legacy code may treat this as VT_BSTR.</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 2 (PIDASI_FORMAT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio.IsVariableBitRate">
            <summary>
            <para>Name:     System.Audio.IsVariableBitRate -- PKEY_Audio_IsVariableBitRate</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {E6822FEE-8C17-4D62-823C-8E9CFCBD1D5C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio.PeakValue">
            <summary>
            <para>Name:     System.Audio.PeakValue -- PKEY_Audio_PeakValue</para>
            <para>Description: </para>
            <para>Type:     UInt32 -- VT_UI4</para>
            <para>FormatID: {2579E5D0-1116-4084-BD9A-9B4F7CB4DF5E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio.SampleRate">
             <summary>
             <para>Name:     System.Audio.SampleRate -- PKEY_Audio_SampleRate</para>
             <para>Description: Indicates the audio sample rate for the audio file in "samples per second".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 5 (PIDASI_SAMPLE_RATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio.SampleSize">
             <summary>
             <para>Name:     System.Audio.SampleSize -- PKEY_Audio_SampleSize</para>
             <para>Description: Indicates the audio sample size for the audio file in "bits per sample".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 6 (PIDASI_SAMPLE_SIZE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio.StreamName">
             <summary>
             <para>Name:     System.Audio.StreamName -- PKEY_Audio_StreamName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 9 (PIDASI_STREAM_NAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemAudio.StreamNumber">
             <summary>
             <para>Name:     System.Audio.StreamNumber -- PKEY_Audio_StreamNumber</para>
             <para>Description: 
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 8 (PIDASI_STREAM_NUMBER)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar">
            <summary>
            System.Calendar Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.Duration">
             <summary>
             <para>Name:     System.Calendar.Duration -- PKEY_Calendar_Duration</para>
             <para>Description: The duration as specified in a string.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {293CA35A-09AA-4DD2-B180-1FE245728A52}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.IsOnline">
             <summary>
             <para>Name:     System.Calendar.IsOnline -- PKEY_Calendar_IsOnline</para>
             <para>Description: Identifies if the event is an online event.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {BFEE9149-E3E2-49A7-A862-C05988145CEC}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.IsRecurring">
            <summary>
            <para>Name:     System.Calendar.IsRecurring -- PKEY_Calendar_IsRecurring</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {315B9C8D-80A9-4EF9-AE16-8E746DA51D70}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.Location">
            <summary>
            <para>Name:     System.Calendar.Location -- PKEY_Calendar_Location</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {F6272D18-CECC-40B1-B26A-3911717AA7BD}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.OptionalAttendeeAddresses">
            <summary>
            <para>Name:     System.Calendar.OptionalAttendeeAddresses -- PKEY_Calendar_OptionalAttendeeAddresses</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {D55BAE5A-3892-417A-A649-C6AC5AAAEAB3}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.OptionalAttendeeNames">
            <summary>
            <para>Name:     System.Calendar.OptionalAttendeeNames -- PKEY_Calendar_OptionalAttendeeNames</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {09429607-582D-437F-84C3-DE93A2B24C3C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.OrganizerAddress">
             <summary>
             <para>Name:     System.Calendar.OrganizerAddress -- PKEY_Calendar_OrganizerAddress</para>
             <para>Description: Address of the organizer organizing the event.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {744C8242-4DF5-456C-AB9E-014EFB9021E3}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.OrganizerName">
             <summary>
             <para>Name:     System.Calendar.OrganizerName -- PKEY_Calendar_OrganizerName</para>
             <para>Description: Name of the organizer organizing the event.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {AAA660F9-9865-458E-B484-01BC7FE3973E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.ReminderTime">
            <summary>
            <para>Name:     System.Calendar.ReminderTime -- PKEY_Calendar_ReminderTime</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {72FC5BA4-24F9-4011-9F3F-ADD27AFAD818}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.RequiredAttendeeAddresses">
            <summary>
            <para>Name:     System.Calendar.RequiredAttendeeAddresses -- PKEY_Calendar_RequiredAttendeeAddresses</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {0BA7D6C3-568D-4159-AB91-781A91FB71E5}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.RequiredAttendeeNames">
            <summary>
            <para>Name:     System.Calendar.RequiredAttendeeNames -- PKEY_Calendar_RequiredAttendeeNames</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {B33AF30B-F552-4584-936C-CB93E5CDA29F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.Resources">
            <summary>
            <para>Name:     System.Calendar.Resources -- PKEY_Calendar_Resources</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {00F58A38-C54B-4C40-8696-97235980EAE1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.ResponseStatus">
             <summary>
             <para>Name:     System.Calendar.ResponseStatus -- PKEY_Calendar_ResponseStatus</para>
             <para>Description: This property stores the status of the user responses to meetings in her calendar.
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {188C1F91-3C40-4132-9EC5-D8B03B72A8A2}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.ShowTimeAs">
             <summary>
             <para>Name:     System.Calendar.ShowTimeAs -- PKEY_Calendar_ShowTimeAs</para>
             <para>Description: 
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {5BF396D4-5EB2-466F-BDE9-2FB3F2361D6E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCalendar.ShowTimeAsText">
             <summary>
             <para>Name:     System.Calendar.ShowTimeAsText -- PKEY_Calendar_ShowTimeAsText</para>
             <para>Description: This is the user-friendly form of System.Calendar.ShowTimeAs.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {53DA57CF-62C0-45C4-81DE-7610BCEFD7F5}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCommunication">
            <summary>
            System.Communication Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCommunication.AccountName">
             <summary>
             <para>Name:     System.Communication.AccountName -- PKEY_Communication_AccountName</para>
             <para>Description: Account Name
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCommunication.DateItemExpires">
             <summary>
             <para>Name:     System.Communication.DateItemExpires -- PKEY_Communication_DateItemExpires</para>
             <para>Description: Date the item expires due to the retention policy.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {428040AC-A177-4C8A-9760-F6F761227F9A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCommunication.FollowupIconIndex">
             <summary>
             <para>Name:     System.Communication.FollowupIconIndex -- PKEY_Communication_FollowupIconIndex</para>
             <para>Description: This is the icon index used on messages marked for followup.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {83A6347E-6FE4-4F40-BA9C-C4865240D1F4}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCommunication.HeaderItem">
             <summary>
             <para>Name:     System.Communication.HeaderItem -- PKEY_Communication_HeaderItem</para>
             <para>Description: This property will be true if the item is a header item which means the item hasn't been fully downloaded.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {C9C34F84-2241-4401-B607-BD20ED75AE7F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCommunication.PolicyTag">
             <summary>
             <para>Name:     System.Communication.PolicyTag -- PKEY_Communication_PolicyTag</para>
             <para>Description: This a string used to identify the retention policy applied to the item.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {EC0B4191-AB0B-4C66-90B6-C6637CDEBBAB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCommunication.SecurityFlags">
             <summary>
             <para>Name:     System.Communication.SecurityFlags -- PKEY_Communication_SecurityFlags</para>
             <para>Description: Security flags associated with the item to know if the item is encrypted, signed or DRM enabled.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {8619A4B6-9F4D-4429-8C0F-B996CA59E335}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCommunication.Suffix">
            <summary>
            <para>Name:     System.Communication.Suffix -- PKEY_Communication_Suffix</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {807B653A-9E91-43EF-8F97-11CE04EE20C5}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCommunication.TaskStatus">
            <summary>
            <para>Name:     System.Communication.TaskStatus -- PKEY_Communication_TaskStatus</para>
            <para>Description: </para>
            <para>Type:     UInt16 -- VT_UI2</para>
            <para>FormatID: {BE1A72C6-9A1D-46B7-AFE7-AFAF8CEF4999}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemCommunication.TaskStatusText">
             <summary>
             <para>Name:     System.Communication.TaskStatusText -- PKEY_Communication_TaskStatusText</para>
             <para>Description: This is the user-friendly form of System.Communication.TaskStatus.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A6744477-C237-475B-A075-54F34498292A}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemComputer">
            <summary>
            System.Computer Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemComputer.DecoratedFreeSpace">
             <summary>
             <para>Name:     System.Computer.DecoratedFreeSpace -- PKEY_Computer_DecoratedFreeSpace</para>
             <para>Description: Free space and total space: "%s free of %s"
            </para>
             <para>Type:     Multivalue UInt64 -- VT_VECTOR | VT_UI8  (For variants: VT_ARRAY | VT_UI8)</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 7  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact">
            <summary>
            System.Contact Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.Anniversary">
            <summary>
            <para>Name:     System.Contact.Anniversary -- PKEY_Contact_Anniversary</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {9AD5BADB-CEA7-4470-A03D-B84E51B9949E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.AssistantName">
            <summary>
            <para>Name:     System.Contact.AssistantName -- PKEY_Contact_AssistantName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CD102C9C-5540-4A88-A6F6-64E4981C8CD1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.AssistantTelephone">
            <summary>
            <para>Name:     System.Contact.AssistantTelephone -- PKEY_Contact_AssistantTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9A93244D-A7AD-4FF8-9B99-45EE4CC09AF6}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.Birthday">
            <summary>
            <para>Name:     System.Contact.Birthday -- PKEY_Contact_Birthday</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 47</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.BusinessAddress">
            <summary>
            <para>Name:     System.Contact.BusinessAddress -- PKEY_Contact_BusinessAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {730FB6DD-CF7C-426B-A03F-BD166CC9EE24}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.BusinessAddressCity">
            <summary>
            <para>Name:     System.Contact.BusinessAddressCity -- PKEY_Contact_BusinessAddressCity</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {402B5934-EC5A-48C3-93E6-85E86A2D934E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.BusinessAddressCountry">
            <summary>
            <para>Name:     System.Contact.BusinessAddressCountry -- PKEY_Contact_BusinessAddressCountry</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {B0B87314-FCF6-4FEB-8DFF-A50DA6AF561C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.BusinessAddressPostalCode">
            <summary>
            <para>Name:     System.Contact.BusinessAddressPostalCode -- PKEY_Contact_BusinessAddressPostalCode</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E1D4A09E-D758-4CD1-B6EC-34A8B5A73F80}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.BusinessAddressPostOfficeBox">
            <summary>
            <para>Name:     System.Contact.BusinessAddressPostOfficeBox -- PKEY_Contact_BusinessAddressPostOfficeBox</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {BC4E71CE-17F9-48D5-BEE9-021DF0EA5409}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.BusinessAddressState">
            <summary>
            <para>Name:     System.Contact.BusinessAddressState -- PKEY_Contact_BusinessAddressState</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {446F787F-10C4-41CB-A6C4-4D0343551597}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.BusinessAddressStreet">
            <summary>
            <para>Name:     System.Contact.BusinessAddressStreet -- PKEY_Contact_BusinessAddressStreet</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {DDD1460F-C0BF-4553-8CE4-10433C908FB0}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.BusinessFaxNumber">
             <summary>
             <para>Name:     System.Contact.BusinessFaxNumber -- PKEY_Contact_BusinessFaxNumber</para>
             <para>Description: Business fax number of the contact.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {91EFF6F3-2E27-42CA-933E-7C999FBE310B}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.BusinessHomePage">
            <summary>
            <para>Name:     System.Contact.BusinessHomePage -- PKEY_Contact_BusinessHomePage</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {56310920-2491-4919-99CE-EADB06FAFDB2}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.BusinessTelephone">
            <summary>
            <para>Name:     System.Contact.BusinessTelephone -- PKEY_Contact_BusinessTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {6A15E5A0-0A1E-4CD7-BB8C-D2F1B0C929BC}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.CallbackTelephone">
            <summary>
            <para>Name:     System.Contact.CallbackTelephone -- PKEY_Contact_CallbackTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {BF53D1C3-49E0-4F7F-8567-5A821D8AC542}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.CarTelephone">
            <summary>
            <para>Name:     System.Contact.CarTelephone -- PKEY_Contact_CarTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8FDC6DEA-B929-412B-BA90-397A257465FE}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.Children">
            <summary>
            <para>Name:     System.Contact.Children -- PKEY_Contact_Children</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {D4729704-8EF1-43EF-9024-2BD381187FD5}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.CompanyMainTelephone">
            <summary>
            <para>Name:     System.Contact.CompanyMainTelephone -- PKEY_Contact_CompanyMainTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8589E481-6040-473D-B171-7FA89C2708ED}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.Department">
            <summary>
            <para>Name:     System.Contact.Department -- PKEY_Contact_Department</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {FC9F7306-FF8F-4D49-9FB6-3FFE5C0951EC}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.EmailAddress">
            <summary>
            <para>Name:     System.Contact.EmailAddress -- PKEY_Contact_EmailAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {F8FA7FA3-D12B-4785-8A4E-691A94F7A3E7}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.EmailAddress2">
            <summary>
            <para>Name:     System.Contact.EmailAddress2 -- PKEY_Contact_EmailAddress2</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {38965063-EDC8-4268-8491-B7723172CF29}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.EmailAddress3">
            <summary>
            <para>Name:     System.Contact.EmailAddress3 -- PKEY_Contact_EmailAddress3</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {644D37B4-E1B3-4BAD-B099-7E7C04966ACA}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.EmailAddresses">
            <summary>
            <para>Name:     System.Contact.EmailAddresses -- PKEY_Contact_EmailAddresses</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {84D8F337-981D-44B3-9615-C7596DBA17E3}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.EmailName">
            <summary>
            <para>Name:     System.Contact.EmailName -- PKEY_Contact_EmailName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CC6F4F24-6083-4BD4-8754-674D0DE87AB8}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.FileAsName">
            <summary>
            <para>Name:     System.Contact.FileAsName -- PKEY_Contact_FileAsName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {F1A24AA7-9CA7-40F6-89EC-97DEF9FFE8DB}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.FirstName">
            <summary>
            <para>Name:     System.Contact.FirstName -- PKEY_Contact_FirstName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {14977844-6B49-4AAD-A714-A4513BF60460}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.FullName">
            <summary>
            <para>Name:     System.Contact.FullName -- PKEY_Contact_FullName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {635E9051-50A5-4BA2-B9DB-4ED056C77296}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.Gender">
            <summary>
            <para>Name:     System.Contact.Gender -- PKEY_Contact_Gender</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {3C8CEE58-D4F0-4CF9-B756-4E5D24447BCD}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.GenderValue">
            <summary>
            <para>Name:     System.Contact.GenderValue -- PKEY_Contact_GenderValue</para>
            <para>Description: </para>
            <para>Type:     UInt16 -- VT_UI2</para>
            <para>FormatID: {3C8CEE58-D4F0-4CF9-B756-4E5D24447BCD}, 101</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.Hobbies">
            <summary>
            <para>Name:     System.Contact.Hobbies -- PKEY_Contact_Hobbies</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {5DC2253F-5E11-4ADF-9CFE-910DD01E3E70}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.HomeAddress">
            <summary>
            <para>Name:     System.Contact.HomeAddress -- PKEY_Contact_HomeAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {98F98354-617A-46B8-8560-5B1B64BF1F89}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.HomeAddressCity">
            <summary>
            <para>Name:     System.Contact.HomeAddressCity -- PKEY_Contact_HomeAddressCity</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 65</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.HomeAddressCountry">
            <summary>
            <para>Name:     System.Contact.HomeAddressCountry -- PKEY_Contact_HomeAddressCountry</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {08A65AA1-F4C9-43DD-9DDF-A33D8E7EAD85}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.HomeAddressPostalCode">
            <summary>
            <para>Name:     System.Contact.HomeAddressPostalCode -- PKEY_Contact_HomeAddressPostalCode</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8AFCC170-8A46-4B53-9EEE-90BAE7151E62}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.HomeAddressPostOfficeBox">
            <summary>
            <para>Name:     System.Contact.HomeAddressPostOfficeBox -- PKEY_Contact_HomeAddressPostOfficeBox</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7B9F6399-0A3F-4B12-89BD-4ADC51C918AF}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.HomeAddressState">
            <summary>
            <para>Name:     System.Contact.HomeAddressState -- PKEY_Contact_HomeAddressState</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {C89A23D0-7D6D-4EB8-87D4-776A82D493E5}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.HomeAddressStreet">
            <summary>
            <para>Name:     System.Contact.HomeAddressStreet -- PKEY_Contact_HomeAddressStreet</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {0ADEF160-DB3F-4308-9A21-06237B16FA2A}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.HomeFaxNumber">
            <summary>
            <para>Name:     System.Contact.HomeFaxNumber -- PKEY_Contact_HomeFaxNumber</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {660E04D6-81AB-4977-A09F-82313113AB26}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.HomeTelephone">
            <summary>
            <para>Name:     System.Contact.HomeTelephone -- PKEY_Contact_HomeTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 20</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.IMAddress">
            <summary>
            <para>Name:     System.Contact.IMAddress -- PKEY_Contact_IMAddress</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {D68DBD8A-3374-4B81-9972-3EC30682DB3D}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.Initials">
            <summary>
            <para>Name:     System.Contact.Initials -- PKEY_Contact_Initials</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {F3D8F40D-50CB-44A2-9718-40CB9119495D}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.JobTitle">
            <summary>
            <para>Name:     System.Contact.JobTitle -- PKEY_Contact_JobTitle</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 6</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.Label">
            <summary>
            <para>Name:     System.Contact.Label -- PKEY_Contact_Label</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {97B0AD89-DF49-49CC-834E-660974FD755B}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.LastName">
            <summary>
            <para>Name:     System.Contact.LastName -- PKEY_Contact_LastName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8F367200-C270-457C-B1D4-E07C5BCD90C7}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.MailingAddress">
            <summary>
            <para>Name:     System.Contact.MailingAddress -- PKEY_Contact_MailingAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {C0AC206A-827E-4650-95AE-77E2BB74FCC9}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.MiddleName">
            <summary>
            <para>Name:     System.Contact.MiddleName -- PKEY_Contact_MiddleName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 71</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.MobileTelephone">
            <summary>
            <para>Name:     System.Contact.MobileTelephone -- PKEY_Contact_MobileTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 35</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.NickName">
            <summary>
            <para>Name:     System.Contact.NickName -- PKEY_Contact_NickName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 74</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.OfficeLocation">
            <summary>
            <para>Name:     System.Contact.OfficeLocation -- PKEY_Contact_OfficeLocation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 7</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.OtherAddress">
            <summary>
            <para>Name:     System.Contact.OtherAddress -- PKEY_Contact_OtherAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {508161FA-313B-43D5-83A1-C1ACCF68622C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.OtherAddressCity">
            <summary>
            <para>Name:     System.Contact.OtherAddressCity -- PKEY_Contact_OtherAddressCity</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {6E682923-7F7B-4F0C-A337-CFCA296687BF}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.OtherAddressCountry">
            <summary>
            <para>Name:     System.Contact.OtherAddressCountry -- PKEY_Contact_OtherAddressCountry</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8F167568-0AAE-4322-8ED9-6055B7B0E398}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.OtherAddressPostalCode">
            <summary>
            <para>Name:     System.Contact.OtherAddressPostalCode -- PKEY_Contact_OtherAddressPostalCode</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {95C656C1-2ABF-4148-9ED3-9EC602E3B7CD}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.OtherAddressPostOfficeBox">
            <summary>
            <para>Name:     System.Contact.OtherAddressPostOfficeBox -- PKEY_Contact_OtherAddressPostOfficeBox</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {8B26EA41-058F-43F6-AECC-4035681CE977}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.OtherAddressState">
            <summary>
            <para>Name:     System.Contact.OtherAddressState -- PKEY_Contact_OtherAddressState</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {71B377D6-E570-425F-A170-809FAE73E54E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.OtherAddressStreet">
            <summary>
            <para>Name:     System.Contact.OtherAddressStreet -- PKEY_Contact_OtherAddressStreet</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {FF962609-B7D6-4999-862D-95180D529AEA}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.PagerTelephone">
            <summary>
            <para>Name:     System.Contact.PagerTelephone -- PKEY_Contact_PagerTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {D6304E01-F8F5-4F45-8B15-D024A6296789}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.PersonalTitle">
            <summary>
            <para>Name:     System.Contact.PersonalTitle -- PKEY_Contact_PersonalTitle</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 69</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.PrimaryAddressCity">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressCity -- PKEY_Contact_PrimaryAddressCity</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {C8EA94F0-A9E3-4969-A94B-9C62A95324E0}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.PrimaryAddressCountry">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressCountry -- PKEY_Contact_PrimaryAddressCountry</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E53D799D-0F3F-466E-B2FF-74634A3CB7A4}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.PrimaryAddressPostalCode">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressPostalCode -- PKEY_Contact_PrimaryAddressPostalCode</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {18BBD425-ECFD-46EF-B612-7B4A6034EDA0}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.PrimaryAddressPostOfficeBox">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressPostOfficeBox -- PKEY_Contact_PrimaryAddressPostOfficeBox</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {DE5EF3C7-46E1-484E-9999-62C5308394C1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.PrimaryAddressState">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressState -- PKEY_Contact_PrimaryAddressState</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {F1176DFE-7138-4640-8B4C-AE375DC70A6D}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.PrimaryAddressStreet">
            <summary>
            <para>Name:     System.Contact.PrimaryAddressStreet -- PKEY_Contact_PrimaryAddressStreet</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {63C25B20-96BE-488F-8788-C09C407AD812}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.PrimaryEmailAddress">
            <summary>
            <para>Name:     System.Contact.PrimaryEmailAddress -- PKEY_Contact_PrimaryEmailAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 48</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.PrimaryTelephone">
            <summary>
            <para>Name:     System.Contact.PrimaryTelephone -- PKEY_Contact_PrimaryTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 25</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.Profession">
            <summary>
            <para>Name:     System.Contact.Profession -- PKEY_Contact_Profession</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7268AF55-1CE4-4F6E-A41F-B6E4EF10E4A9}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.SpouseName">
            <summary>
            <para>Name:     System.Contact.SpouseName -- PKEY_Contact_SpouseName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9D2408B6-3167-422B-82B0-F583B7A7CFE3}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.Suffix">
            <summary>
            <para>Name:     System.Contact.Suffix -- PKEY_Contact_Suffix</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {176DC63C-2688-4E89-8143-A347800F25E9}, 73</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.TelexNumber">
            <summary>
            <para>Name:     System.Contact.TelexNumber -- PKEY_Contact_TelexNumber</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {C554493C-C1F7-40C1-A76C-EF8C0614003E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.TTYTDDTelephone">
            <summary>
            <para>Name:     System.Contact.TTYTDDTelephone -- PKEY_Contact_TTYTDDTelephone</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {AAF16BAC-2B55-45E6-9F6D-415EB94910DF}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.WebPage">
            <summary>
            <para>Name:     System.Contact.WebPage -- PKEY_Contact_WebPage</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 18</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemContact.JA">
            <summary>
            Contact.JA Properties
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyContactJA">
            <summary>
            Contact.JA Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyContactJA.CompanyNamePhonetic">
             <summary>
             <para>Name:     System.Contact.JA.CompanyNamePhonetic -- PKEY_Contact_JA_CompanyNamePhonetic</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {897B3694-FE9E-43E6-8066-260F590C0100}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyContactJA.FirstNamePhonetic">
             <summary>
             <para>Name:     System.Contact.JA.FirstNamePhonetic -- PKEY_Contact_JA_FirstNamePhonetic</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {897B3694-FE9E-43E6-8066-260F590C0100}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyContactJA.LastNamePhonetic">
             <summary>
             <para>Name:     System.Contact.JA.LastNamePhonetic -- PKEY_Contact_JA_LastNamePhonetic</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {897B3694-FE9E-43E6-8066-260F590C0100}, 4</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevice">
            <summary>
            System.Device Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevice.PrinterURL">
             <summary>
             <para>Name:     System.Device.PrinterURL -- PKEY_Device_PrinterURL</para>
             <para>Description: Printer information Printer URL.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {0B48F35A-BE6E-4F17-B108-3C4073D1669A}, 15</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDeviceInterface">
            <summary>
            System.DeviceInterface Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDeviceInterface.PrinterDriverDirectory">
             <summary>
             <para>Name:     System.DeviceInterface.PrinterDriverDirectory -- PKEY_DeviceInterface_PrinterDriverDirectory</para>
             <para>Description: Printer information Printer Driver Directory.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {847C66DE-B8D6-4AF9-ABC3-6F4F926BC039}, 14</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDeviceInterface.PrinterDriverName">
             <summary>
             <para>Name:     System.DeviceInterface.PrinterDriverName -- PKEY_DeviceInterface_PrinterDriverName</para>
             <para>Description: Printer information Driver Name.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {AFC47170-14F5-498C-8F30-B0D19BE449C6}, 11</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDeviceInterface.PrinterName">
             <summary>
             <para>Name:     System.DeviceInterface.PrinterName -- PKEY_DeviceInterface_PrinterName</para>
             <para>Description: Printer information Printer Name.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {0A7B84EF-0C27-463F-84EF-06C5070001BE}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDeviceInterface.PrinterPortName">
             <summary>
             <para>Name:     System.DeviceInterface.PrinterPortName -- PKEY_DeviceInterface_PrinterPortName</para>
             <para>Description: Printer information Port Name.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {EEC7B761-6F94-41B1-949F-C729720DD13C}, 12</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices">
            <summary>
            System.Devices Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.BatteryLife">
             <summary>
             <para>Name:     System.Devices.BatteryLife -- PKEY_Devices_BatteryLife</para>
             <para>Description: Remaining battery life of the device as an integer between 0 and 100 percent.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.BatteryPlusCharging">
             <summary>
             <para>Name:     System.Devices.BatteryPlusCharging -- PKEY_Devices_BatteryPlusCharging</para>
             <para>Description: Remaining battery life of the device as an integer between 0 and 100 percent and the device's charging state.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 22</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.BatteryPlusChargingText">
             <summary>
             <para>Name:     System.Devices.BatteryPlusChargingText -- PKEY_Devices_BatteryPlusChargingText</para>
             <para>Description: Remaining battery life of the device and the device's charging state as a string.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 23</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.Category">
             <summary>
             <para>Name:     System.Devices.Category -- PKEY_Devices_Category_Desc_Singular</para>
             <para>Description: Singular form of device category.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 91</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.CategoryGroup">
             <summary>
             <para>Name:     System.Devices.CategoryGroup -- PKEY_Devices_CategoryGroup_Desc</para>
             <para>Description: Plural form of device category.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 94</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.CategoryPlural">
             <summary>
             <para>Name:     System.Devices.CategoryPlural -- PKEY_Devices_Category_Desc_Plural</para>
             <para>Description: Plural form of device category.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 92</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.ChargingState">
             <summary>
             <para>Name:     System.Devices.ChargingState -- PKEY_Devices_ChargingState</para>
             <para>Description: Boolean value representing if the device is currently charging.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 11</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.Connected">
             <summary>
             <para>Name:     System.Devices.Connected -- PKEY_Devices_IsConnected</para>
             <para>Description: Device connection state. If VARIANT_TRUE, indicates the device is currently connected to the computer.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 55</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.ContainerId">
             <summary>
             <para>Name:     System.Devices.ContainerId -- PKEY_Devices_ContainerId</para>
             <para>Description: Device container ID.
            </para>
             <para>Type:     Guid -- VT_CLSID</para>
             <para>FormatID: {8C7ED206-3F8A-4827-B3AB-AE9E1FAEFC6C}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.DefaultTooltip">
             <summary>
             <para>Name:     System.Devices.DefaultTooltip -- PKEY_Devices_DefaultTooltip</para>
             <para>Description: Tooltip for default state
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {880F70A2-6082-47AC-8AAB-A739D1A300C3}, 153</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.DeviceDescription1">
             <summary>
             <para>Name:     System.Devices.DeviceDescription1 -- PKEY_Devices_DeviceDescription1</para>
             <para>Description: First line of descriptive text about the device.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 81</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.DeviceDescription2">
             <summary>
             <para>Name:     System.Devices.DeviceDescription2 -- PKEY_Devices_DeviceDescription2</para>
             <para>Description: Second line of descriptive text about the device.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 82</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.DiscoveryMethod">
             <summary>
             <para>Name:     System.Devices.DiscoveryMethod -- PKEY_Devices_DiscoveryMethod</para>
             <para>Description: Device discovery method. This indicates on what transport or physical connection the device is discovered.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 52</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.FriendlyName">
             <summary>
             <para>Name:     System.Devices.FriendlyName -- PKEY_Devices_FriendlyName</para>
             <para>Description: Device friendly name.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {656A3BB3-ECC0-43FD-8477-4AE0404A96CD}, 12288</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.FunctionPaths">
             <summary>
             <para>Name:     System.Devices.FunctionPaths -- PKEY_Devices_FunctionPaths</para>
             <para>Description: Available functions for this device.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D08DD4C0-3A9E-462E-8290-7B636B2576B9}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.InterfacePaths">
             <summary>
             <para>Name:     System.Devices.InterfacePaths -- PKEY_Devices_InterfacePaths</para>
             <para>Description: Available interfaces for this device.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D08DD4C0-3A9E-462E-8290-7B636B2576B9}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.IsDefault">
             <summary>
             <para>Name:     System.Devices.IsDefault -- PKEY_Devices_IsDefaultDevice</para>
             <para>Description: If VARIANT_TRUE, the device is not working properly.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 86</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.IsNetworkConnected">
             <summary>
             <para>Name:     System.Devices.IsNetworkConnected -- PKEY_Devices_IsNetworkDevice</para>
             <para>Description: If VARIANT_TRUE, the device is not working properly.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 85</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.IsShared">
             <summary>
             <para>Name:     System.Devices.IsShared -- PKEY_Devices_IsSharedDevice</para>
             <para>Description: If VARIANT_TRUE, the device is not working properly.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 84</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.IsSoftwareInstalling">
             <summary>
             <para>Name:     System.Devices.IsSoftwareInstalling -- PKEY_Devices_IsSoftwareInstalling</para>
             <para>Description: If VARIANT_TRUE, the device installer is currently installing software.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {83DA6326-97A6-4088-9453-A1923F573B29}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.LaunchDeviceStageFromExplorer">
             <summary>
             <para>Name:     System.Devices.LaunchDeviceStageFromExplorer -- PKEY_Devices_LaunchDeviceStageFromExplorer</para>
             <para>Description: Indicates whether to launch Device Stage or not
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 77</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.LocalMachine">
             <summary>
             <para>Name:     System.Devices.LocalMachine -- PKEY_Devices_IsLocalMachine</para>
             <para>Description: If VARIANT_TRUE, the device in question is actually the computer.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 70</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.Manufacturer">
             <summary>
             <para>Name:     System.Devices.Manufacturer -- PKEY_Devices_Manufacturer</para>
             <para>Description: Device manufacturer.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {656A3BB3-ECC0-43FD-8477-4AE0404A96CD}, 8192</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.MissedCalls">
             <summary>
             <para>Name:     System.Devices.MissedCalls -- PKEY_Devices_MissedCalls</para>
             <para>Description: Number of missed calls on the device.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.ModelName">
             <summary>
             <para>Name:     System.Devices.ModelName -- PKEY_Devices_ModelName</para>
             <para>Description: Model name of the device.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {656A3BB3-ECC0-43FD-8477-4AE0404A96CD}, 8194</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.ModelNumber">
             <summary>
             <para>Name:     System.Devices.ModelNumber -- PKEY_Devices_ModelNumber</para>
             <para>Description: Model number of the device.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {656A3BB3-ECC0-43FD-8477-4AE0404A96CD}, 8195</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.NetworkedTooltip">
             <summary>
             <para>Name:     System.Devices.NetworkedTooltip -- PKEY_Devices_NetworkedTooltip</para>
             <para>Description: Tooltip for connection state
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {880F70A2-6082-47AC-8AAB-A739D1A300C3}, 152</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.NetworkName">
             <summary>
             <para>Name:     System.Devices.NetworkName -- PKEY_Devices_NetworkName</para>
             <para>Description: Name of the device's network.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 7</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.NetworkType">
             <summary>
             <para>Name:     System.Devices.NetworkType -- PKEY_Devices_NetworkType</para>
             <para>Description: String representing the type of the device's network.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.NewPictures">
             <summary>
             <para>Name:     System.Devices.NewPictures -- PKEY_Devices_NewPictures</para>
             <para>Description: Number of new pictures on the device.
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.Notification">
             <summary>
             <para>Name:     System.Devices.Notification -- PKEY_Devices_Notification</para>
             <para>Description: Device Notification Property.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {06704B0C-E830-4C81-9178-91E4E95A80A0}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.NotificationStore">
             <summary>
             <para>Name:     System.Devices.NotificationStore -- PKEY_Devices_NotificationStore</para>
             <para>Description: Device Notification Store.
            </para>
             <para>Type:     Object -- VT_UNKNOWN</para>
             <para>FormatID: {06704B0C-E830-4C81-9178-91E4E95A80A0}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.NotWorkingProperly">
             <summary>
             <para>Name:     System.Devices.NotWorkingProperly -- PKEY_Devices_IsNotWorkingProperly</para>
             <para>Description: If VARIANT_TRUE, the device is not working properly.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 83</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.Paired">
             <summary>
             <para>Name:     System.Devices.Paired -- PKEY_Devices_IsPaired</para>
             <para>Description: Device paired state. If VARIANT_TRUE, indicates the device is not paired with the computer.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {78C34FC8-104A-4ACA-9EA4-524D52996E57}, 56</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.PrimaryCategory">
             <summary>
             <para>Name:     System.Devices.PrimaryCategory -- PKEY_Devices_PrimaryCategory</para>
             <para>Description: Primary category group for this device.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D08DD4C0-3A9E-462E-8290-7B636B2576B9}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.Roaming">
             <summary>
             <para>Name:     System.Devices.Roaming -- PKEY_Devices_Roaming</para>
             <para>Description: Status indicator used to indicate if the device is roaming.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.SafeRemovalRequired">
             <summary>
             <para>Name:     System.Devices.SafeRemovalRequired -- PKEY_Devices_SafeRemovalRequired</para>
             <para>Description: Indicates if a device requires safe removal or not
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {AFD97640-86A3-4210-B67C-289C41AABE55}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.SharedTooltip">
             <summary>
             <para>Name:     System.Devices.SharedTooltip -- PKEY_Devices_SharedTooltip</para>
             <para>Description: Tooltip for sharing state
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {880F70A2-6082-47AC-8AAB-A739D1A300C3}, 151</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.SignalStrength">
             <summary>
             <para>Name:     System.Devices.SignalStrength -- PKEY_Devices_SignalStrength</para>
             <para>Description: Device signal strength.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.Status1">
             <summary>
             <para>Name:     System.Devices.Status1 -- PKEY_Devices_Status1</para>
             <para>Description: 1st line of device status.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D08DD4C0-3A9E-462E-8290-7B636B2576B9}, 257</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.Status2">
             <summary>
             <para>Name:     System.Devices.Status2 -- PKEY_Devices_Status2</para>
             <para>Description: 2nd line of device status.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D08DD4C0-3A9E-462E-8290-7B636B2576B9}, 258</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.StorageCapacity">
             <summary>
             <para>Name:     System.Devices.StorageCapacity -- PKEY_Devices_StorageCapacity</para>
             <para>Description: Total storage capacity of the device.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 12</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.StorageFreeSpace">
             <summary>
             <para>Name:     System.Devices.StorageFreeSpace -- PKEY_Devices_StorageFreeSpace</para>
             <para>Description: Total free space of the storage of the device.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 13</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.StorageFreeSpacePercent">
             <summary>
             <para>Name:     System.Devices.StorageFreeSpacePercent -- PKEY_Devices_StorageFreeSpacePercent</para>
             <para>Description: Total free space of the storage of the device as a percentage.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 14</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.TextMessages">
             <summary>
             <para>Name:     System.Devices.TextMessages -- PKEY_Devices_TextMessages</para>
             <para>Description: Number of unread text messages on the device.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.Voicemail">
             <summary>
             <para>Name:     System.Devices.Voicemail -- PKEY_Devices_Voicemail</para>
             <para>Description: Status indicator used to indicate if the device has voicemail.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {49CD1F76-5626-4B17-A4E8-18B4AA1A2213}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDevices.Notifications">
            <summary>
            Devices.Notifications Properties
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyDevicesNotifications">
            <summary>
            Devices.Notifications Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyDevicesNotifications.LowBattery">
             <summary>
             <para>Name:     System.Devices.Notifications.LowBattery -- PKEY_Devices_Notification_LowBattery</para>
             <para>Description: Device Low Battery Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {C4C07F2B-8524-4E66-AE3A-A6235F103BEB}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyDevicesNotifications.MissedCall">
             <summary>
             <para>Name:     System.Devices.Notifications.MissedCall -- PKEY_Devices_Notification_MissedCall</para>
             <para>Description: Device Missed Call Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {6614EF48-4EFE-4424-9EDA-C79F404EDF3E}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyDevicesNotifications.NewMessage">
             <summary>
             <para>Name:     System.Devices.Notifications.NewMessage -- PKEY_Devices_Notification_NewMessage</para>
             <para>Description: Device New Message Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {2BE9260A-2012-4742-A555-F41B638B7DCB}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyDevicesNotifications.NewVoicemail">
             <summary>
             <para>Name:     System.Devices.Notifications.NewVoicemail -- PKEY_Devices_Notification_NewVoicemail</para>
             <para>Description: Device Voicemail Notification.
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {59569556-0A08-4212-95B9-FAE2AD6413DB}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyDevicesNotifications.StorageFull">
             <summary>
             <para>Name:     System.Devices.Notifications.StorageFull -- PKEY_Devices_Notification_StorageFull</para>
             <para>Description: Device Storage Full Notification.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {A0E00EE1-F0C7-4D41-B8E7-26A7BD8D38B0}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertyDevicesNotifications.StorageFullLinkText">
             <summary>
             <para>Name:     System.Devices.Notifications.StorageFullLinkText -- PKEY_Devices_Notification_StorageFullLinkText</para>
             <para>Description: Link Text for the Device Storage Full Notification.
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: {A0E00EE1-F0C7-4D41-B8E7-26A7BD8D38B0}, 3</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument">
            <summary>
            System.Document Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.ByteCount">
             <summary>
             <para>Name:     System.Document.ByteCount -- PKEY_Document_ByteCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 4 (PIDDSI_BYTECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.CharacterCount">
             <summary>
             <para>Name:     System.Document.CharacterCount -- PKEY_Document_CharacterCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 16 (PIDSI_CHARCOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.ClientID">
            <summary>
            <para>Name:     System.Document.ClientID -- PKEY_Document_ClientID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {276D7BB0-5B34-4FB0-AA4B-158ED12A1809}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.Contributor">
            <summary>
            <para>Name:     System.Document.Contributor -- PKEY_Document_Contributor</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {F334115E-DA1B-4509-9B3D-119504DC7ABB}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.DateCreated">
             <summary>
             <para>Name:     System.Document.DateCreated -- PKEY_Document_DateCreated</para>
             <para>Description: This property is stored in the document, not obtained from the file system.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 12 (PIDSI_CREATE_DTM)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.DatePrinted">
             <summary>
             <para>Name:     System.Document.DatePrinted -- PKEY_Document_DatePrinted</para>
             <para>Description: Legacy name: "DocLastPrinted".
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 11 (PIDSI_LASTPRINTED)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.DateSaved">
             <summary>
             <para>Name:     System.Document.DateSaved -- PKEY_Document_DateSaved</para>
             <para>Description: Legacy name: "DocLastSavedTm".
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 13 (PIDSI_LASTSAVE_DTM)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.Division">
            <summary>
            <para>Name:     System.Document.Division -- PKEY_Document_Division</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {1E005EE6-BF27-428B-B01C-79676ACD2870}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.DocumentID">
            <summary>
            <para>Name:     System.Document.DocumentID -- PKEY_Document_DocumentID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E08805C8-E395-40DF-80D2-54F0D6C43154}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.HiddenSlideCount">
             <summary>
             <para>Name:     System.Document.HiddenSlideCount -- PKEY_Document_HiddenSlideCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 9 (PIDDSI_HIDDENCOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.LastAuthor">
             <summary>
             <para>Name:     System.Document.LastAuthor -- PKEY_Document_LastAuthor</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 8 (PIDSI_LASTAUTHOR)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.LineCount">
             <summary>
             <para>Name:     System.Document.LineCount -- PKEY_Document_LineCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 5 (PIDDSI_LINECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.Manager">
             <summary>
             <para>Name:     System.Document.Manager -- PKEY_Document_Manager</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 14 (PIDDSI_MANAGER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.MultimediaClipCount">
             <summary>
             <para>Name:     System.Document.MultimediaClipCount -- PKEY_Document_MultimediaClipCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 10 (PIDDSI_MMCLIPCOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.NoteCount">
             <summary>
             <para>Name:     System.Document.NoteCount -- PKEY_Document_NoteCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 8 (PIDDSI_NOTECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.PageCount">
             <summary>
             <para>Name:     System.Document.PageCount -- PKEY_Document_PageCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 14 (PIDSI_PAGECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.ParagraphCount">
             <summary>
             <para>Name:     System.Document.ParagraphCount -- PKEY_Document_ParagraphCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 6 (PIDDSI_PARCOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.PresentationFormat">
             <summary>
             <para>Name:     System.Document.PresentationFormat -- PKEY_Document_PresentationFormat</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 3 (PIDDSI_PRESFORMAT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.RevisionNumber">
             <summary>
             <para>Name:     System.Document.RevisionNumber -- PKEY_Document_RevisionNumber</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 9 (PIDSI_REVNUMBER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.Security">
             <summary>
             <para>Name:     System.Document.Security -- PKEY_Document_Security</para>
             <para>Description: Access control information, from SummaryInfo propset
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 19</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.SlideCount">
             <summary>
             <para>Name:     System.Document.SlideCount -- PKEY_Document_SlideCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 7 (PIDDSI_SLIDECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.Template">
             <summary>
             <para>Name:     System.Document.Template -- PKEY_Document_Template</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 7 (PIDSI_TEMPLATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.TotalEditingTime">
             <summary>
             <para>Name:     System.Document.TotalEditingTime -- PKEY_Document_TotalEditingTime</para>
             <para>Description: 100ns units, not milliseconds. VT_FILETIME for IPropertySetStorage handlers (legacy)
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 10 (PIDSI_EDITTIME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.Version">
            <summary>
            <para>Name:     System.Document.Version -- PKEY_Document_Version</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: (FMTID_DocumentSummaryInformation) {D5CDD502-2E9C-101B-9397-08002B2CF9AE}, 29</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDocument.WordCount">
             <summary>
             <para>Name:     System.Document.WordCount -- PKEY_Document_WordCount</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_SummaryInformation) {F29F85E0-4FF9-1068-AB91-08002B27B3D9}, 15 (PIDSI_WORDCOUNT)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDRM">
            <summary>
            System.DRM Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDRM.DatePlayExpires">
             <summary>
             <para>Name:     System.DRM.DatePlayExpires -- PKEY_DRM_DatePlayExpires</para>
             <para>Description: Indicates when play expires for digital rights management.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_DRM) {AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED}, 6 (PIDDRSI_PLAYEXPIRES)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDRM.DatePlayStarts">
             <summary>
             <para>Name:     System.DRM.DatePlayStarts -- PKEY_DRM_DatePlayStarts</para>
             <para>Description: Indicates when play starts for digital rights management.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_DRM) {AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED}, 5 (PIDDRSI_PLAYSTARTS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDRM.Description">
             <summary>
             <para>Name:     System.DRM.Description -- PKEY_DRM_Description</para>
             <para>Description: Displays the description for digital rights management.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_DRM) {AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED}, 3 (PIDDRSI_DESCRIPTION)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDRM.IsProtected">
             <summary>
             <para>Name:     System.DRM.IsProtected -- PKEY_DRM_IsProtected</para>
             <para>Description: 
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: (FMTID_DRM) {AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED}, 2 (PIDDRSI_PROTECTED)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemDRM.PlayCount">
             <summary>
             <para>Name:     System.DRM.PlayCount -- PKEY_DRM_PlayCount</para>
             <para>Description: Indicates the play count for digital rights management.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_DRM) {AEAC19E4-89AE-4508-B9B7-BB867ABEE2ED}, 4 (PIDDRSI_PLAYCOUNT)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS">
            <summary>
            System.GPS Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.Altitude">
             <summary>
             <para>Name:     System.GPS.Altitude -- PKEY_GPS_Altitude</para>
             <para>Description: Indicates the altitude based on the reference in PKEY_GPS_AltitudeRef.  Calculated from PKEY_GPS_AltitudeNumerator and 
            PKEY_GPS_AltitudeDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {827EDB4F-5B73-44A7-891D-FDFFABEA35CA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.AltitudeDenominator">
             <summary>
             <para>Name:     System.GPS.AltitudeDenominator -- PKEY_GPS_AltitudeDenominator</para>
             <para>Description: Denominator of PKEY_GPS_Altitude
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {78342DCB-E358-4145-AE9A-6BFE4E0F9F51}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.AltitudeNumerator">
             <summary>
             <para>Name:     System.GPS.AltitudeNumerator -- PKEY_GPS_AltitudeNumerator</para>
             <para>Description: Numerator of PKEY_GPS_Altitude
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {2DAD1EB7-816D-40D3-9EC3-C9773BE2AADE}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.AltitudeRef">
             <summary>
             <para>Name:     System.GPS.AltitudeRef -- PKEY_GPS_AltitudeRef</para>
             <para>Description: Indicates the reference for the altitude property. (eg: above sea level, below sea level, absolute value)
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: {46AC629D-75EA-4515-867F-6DC4321C5844}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.AreaInformation">
             <summary>
             <para>Name:     System.GPS.AreaInformation -- PKEY_GPS_AreaInformation</para>
             <para>Description: Represents the name of the GPS area
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {972E333E-AC7E-49F1-8ADF-A70D07A9BCAB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.Date">
             <summary>
             <para>Name:     System.GPS.Date -- PKEY_GPS_Date</para>
             <para>Description: Date and time of the GPS record
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {3602C812-0F3B-45F0-85AD-603468D69423}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestBearing">
             <summary>
             <para>Name:     System.GPS.DestBearing -- PKEY_GPS_DestBearing</para>
             <para>Description: Indicates the bearing to the destination point.  Calculated from PKEY_GPS_DestBearingNumerator and 
            PKEY_GPS_DestBearingDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {C66D4B3C-E888-47CC-B99F-9DCA3EE34DEA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestBearingDenominator">
             <summary>
             <para>Name:     System.GPS.DestBearingDenominator -- PKEY_GPS_DestBearingDenominator</para>
             <para>Description: Denominator of PKEY_GPS_DestBearing
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {7ABCF4F8-7C3F-4988-AC91-8D2C2E97ECA5}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestBearingNumerator">
             <summary>
             <para>Name:     System.GPS.DestBearingNumerator -- PKEY_GPS_DestBearingNumerator</para>
             <para>Description: Numerator of PKEY_GPS_DestBearing
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {BA3B1DA9-86EE-4B5D-A2A4-A271A429F0CF}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestBearingRef">
             <summary>
             <para>Name:     System.GPS.DestBearingRef -- PKEY_GPS_DestBearingRef</para>
             <para>Description: Indicates the reference used for the giving the bearing to the destination point.  (eg: true direction, magnetic direction)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {9AB84393-2A0F-4B75-BB22-7279786977CB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestDistance">
             <summary>
             <para>Name:     System.GPS.DestDistance -- PKEY_GPS_DestDistance</para>
             <para>Description: Indicates the distance to the destination point.  Calculated from PKEY_GPS_DestDistanceNumerator and 
            PKEY_GPS_DestDistanceDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {A93EAE04-6804-4F24-AC81-09B266452118}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestDistanceDenominator">
             <summary>
             <para>Name:     System.GPS.DestDistanceDenominator -- PKEY_GPS_DestDistanceDenominator</para>
             <para>Description: Denominator of PKEY_GPS_DestDistance
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {9BC2C99B-AC71-4127-9D1C-2596D0D7DCB7}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestDistanceNumerator">
             <summary>
             <para>Name:     System.GPS.DestDistanceNumerator -- PKEY_GPS_DestDistanceNumerator</para>
             <para>Description: Numerator of PKEY_GPS_DestDistance
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {2BDA47DA-08C6-4FE1-80BC-A72FC517C5D0}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestDistanceRef">
             <summary>
             <para>Name:     System.GPS.DestDistanceRef -- PKEY_GPS_DestDistanceRef</para>
             <para>Description: Indicates the unit used to express the distance to the destination.  (eg: kilometers, miles, knots)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {ED4DF2D3-8695-450B-856F-F5C1C53ACB66}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestLatitude">
             <summary>
             <para>Name:     System.GPS.DestLatitude -- PKEY_GPS_DestLatitude</para>
             <para>Description: Indicates the latitude of the destination point.  This is an array of three values.  Index 0 is the degrees, index 1 
            is the minutes, index 2 is the seconds.  Each is calculated from the values in PKEY_GPS_DestLatitudeNumerator and 
            PKEY_GPS_DestLatitudeDenominator.
            </para>
             <para>Type:     Multivalue Double -- VT_VECTOR | VT_R8  (For variants: VT_ARRAY | VT_R8)</para>
             <para>FormatID: {9D1D7CC5-5C39-451C-86B3-928E2D18CC47}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestLatitudeDenominator">
             <summary>
             <para>Name:     System.GPS.DestLatitudeDenominator -- PKEY_GPS_DestLatitudeDenominator</para>
             <para>Description: Denominator of PKEY_GPS_DestLatitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {3A372292-7FCA-49A7-99D5-E47BB2D4E7AB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestLatitudeNumerator">
             <summary>
             <para>Name:     System.GPS.DestLatitudeNumerator -- PKEY_GPS_DestLatitudeNumerator</para>
             <para>Description: Numerator of PKEY_GPS_DestLatitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {ECF4B6F6-D5A6-433C-BB92-4076650FC890}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestLatitudeRef">
             <summary>
             <para>Name:     System.GPS.DestLatitudeRef -- PKEY_GPS_DestLatitudeRef</para>
             <para>Description: Indicates whether the latitude destination point is north or south latitude
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {CEA820B9-CE61-4885-A128-005D9087C192}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestLongitude">
             <summary>
             <para>Name:     System.GPS.DestLongitude -- PKEY_GPS_DestLongitude</para>
             <para>Description: Indicates the latitude of the destination point.  This is an array of three values.  Index 0 is the degrees, index 1 
            is the minutes, index 2 is the seconds.  Each is calculated from the values in PKEY_GPS_DestLongitudeNumerator and 
            PKEY_GPS_DestLongitudeDenominator.
            </para>
             <para>Type:     Multivalue Double -- VT_VECTOR | VT_R8  (For variants: VT_ARRAY | VT_R8)</para>
             <para>FormatID: {47A96261-CB4C-4807-8AD3-40B9D9DBC6BC}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestLongitudeDenominator">
             <summary>
             <para>Name:     System.GPS.DestLongitudeDenominator -- PKEY_GPS_DestLongitudeDenominator</para>
             <para>Description: Denominator of PKEY_GPS_DestLongitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {425D69E5-48AD-4900-8D80-6EB6B8D0AC86}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestLongitudeNumerator">
             <summary>
             <para>Name:     System.GPS.DestLongitudeNumerator -- PKEY_GPS_DestLongitudeNumerator</para>
             <para>Description: Numerator of PKEY_GPS_DestLongitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {A3250282-FB6D-48D5-9A89-DBCACE75CCCF}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DestLongitudeRef">
             <summary>
             <para>Name:     System.GPS.DestLongitudeRef -- PKEY_GPS_DestLongitudeRef</para>
             <para>Description: Indicates whether the longitude destination point is east or west longitude
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {182C1EA6-7C1C-4083-AB4B-AC6C9F4ED128}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.Differential">
             <summary>
             <para>Name:     System.GPS.Differential -- PKEY_GPS_Differential</para>
             <para>Description: Indicates whether differential correction was applied to the GPS receiver
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {AAF4EE25-BD3B-4DD7-BFC4-47F77BB00F6D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DOP">
             <summary>
             <para>Name:     System.GPS.DOP -- PKEY_GPS_DOP</para>
             <para>Description: Indicates the GPS DOP (data degree of precision).  Calculated from PKEY_GPS_DOPNumerator and PKEY_GPS_DOPDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {0CF8FB02-1837-42F1-A697-A7017AA289B9}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DOPDenominator">
             <summary>
             <para>Name:     System.GPS.DOPDenominator -- PKEY_GPS_DOPDenominator</para>
             <para>Description: Denominator of PKEY_GPS_DOP
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {A0BE94C5-50BA-487B-BD35-0654BE8881ED}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.DOPNumerator">
             <summary>
             <para>Name:     System.GPS.DOPNumerator -- PKEY_GPS_DOPNumerator</para>
             <para>Description: Numerator of PKEY_GPS_DOP
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {47166B16-364F-4AA0-9F31-E2AB3DF449C3}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.ImgDirection">
             <summary>
             <para>Name:     System.GPS.ImgDirection -- PKEY_GPS_ImgDirection</para>
             <para>Description: Indicates direction of the image when it was captured.  Calculated from PKEY_GPS_ImgDirectionNumerator and 
            PKEY_GPS_ImgDirectionDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {16473C91-D017-4ED9-BA4D-B6BAA55DBCF8}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.ImgDirectionDenominator">
             <summary>
             <para>Name:     System.GPS.ImgDirectionDenominator -- PKEY_GPS_ImgDirectionDenominator</para>
             <para>Description: Denominator of PKEY_GPS_ImgDirection
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {10B24595-41A2-4E20-93C2-5761C1395F32}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.ImgDirectionNumerator">
             <summary>
             <para>Name:     System.GPS.ImgDirectionNumerator -- PKEY_GPS_ImgDirectionNumerator</para>
             <para>Description: Numerator of PKEY_GPS_ImgDirection
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {DC5877C7-225F-45F7-BAC7-E81334B6130A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.ImgDirectionRef">
             <summary>
             <para>Name:     System.GPS.ImgDirectionRef -- PKEY_GPS_ImgDirectionRef</para>
             <para>Description: Indicates reference for giving the direction of the image when it was captured.  (eg: true direction, magnetic direction)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A4AAA5B7-1AD0-445F-811A-0F8F6E67F6B5}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.Latitude">
             <summary>
             <para>Name:     System.GPS.Latitude -- PKEY_GPS_Latitude</para>
             <para>Description: Indicates the latitude.  This is an array of three values.  Index 0 is the degrees, index 1 is the minutes, index 2 
            is the seconds.  Each is calculated from the values in PKEY_GPS_LatitudeNumerator and PKEY_GPS_LatitudeDenominator.
            </para>
             <para>Type:     Multivalue Double -- VT_VECTOR | VT_R8  (For variants: VT_ARRAY | VT_R8)</para>
             <para>FormatID: {8727CFFF-4868-4EC6-AD5B-81B98521D1AB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.LatitudeDenominator">
             <summary>
             <para>Name:     System.GPS.LatitudeDenominator -- PKEY_GPS_LatitudeDenominator</para>
             <para>Description: Denominator of PKEY_GPS_Latitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {16E634EE-2BFF-497B-BD8A-4341AD39EEB9}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.LatitudeNumerator">
             <summary>
             <para>Name:     System.GPS.LatitudeNumerator -- PKEY_GPS_LatitudeNumerator</para>
             <para>Description: Numerator of PKEY_GPS_Latitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {7DDAAAD1-CCC8-41AE-B750-B2CB8031AEA2}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.LatitudeRef">
             <summary>
             <para>Name:     System.GPS.LatitudeRef -- PKEY_GPS_LatitudeRef</para>
             <para>Description: Indicates whether latitude is north or south latitude 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {029C0252-5B86-46C7-ACA0-2769FFC8E3D4}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.Longitude">
             <summary>
             <para>Name:     System.GPS.Longitude -- PKEY_GPS_Longitude</para>
             <para>Description: Indicates the longitude.  This is an array of three values.  Index 0 is the degrees, index 1 is the minutes, index 2 
            is the seconds.  Each is calculated from the values in PKEY_GPS_LongitudeNumerator and PKEY_GPS_LongitudeDenominator.
            </para>
             <para>Type:     Multivalue Double -- VT_VECTOR | VT_R8  (For variants: VT_ARRAY | VT_R8)</para>
             <para>FormatID: {C4C4DBB2-B593-466B-BBDA-D03D27D5E43A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.LongitudeDenominator">
             <summary>
             <para>Name:     System.GPS.LongitudeDenominator -- PKEY_GPS_LongitudeDenominator</para>
             <para>Description: Denominator of PKEY_GPS_Longitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {BE6E176C-4534-4D2C-ACE5-31DEDAC1606B}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.LongitudeNumerator">
             <summary>
             <para>Name:     System.GPS.LongitudeNumerator -- PKEY_GPS_LongitudeNumerator</para>
             <para>Description: Numerator of PKEY_GPS_Longitude
            </para>
             <para>Type:     Multivalue UInt32 -- VT_VECTOR | VT_UI4  (For variants: VT_ARRAY | VT_UI4)</para>
             <para>FormatID: {02B0F689-A914-4E45-821D-1DDA452ED2C4}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.LongitudeRef">
             <summary>
             <para>Name:     System.GPS.LongitudeRef -- PKEY_GPS_LongitudeRef</para>
             <para>Description: Indicates whether longitude is east or west longitude
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {33DCF22B-28D5-464C-8035-1EE9EFD25278}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.MapDatum">
             <summary>
             <para>Name:     System.GPS.MapDatum -- PKEY_GPS_MapDatum</para>
             <para>Description: Indicates the geodetic survey data used by the GPS receiver
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {2CA2DAE6-EDDC-407D-BEF1-773942ABFA95}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.MeasureMode">
             <summary>
             <para>Name:     System.GPS.MeasureMode -- PKEY_GPS_MeasureMode</para>
             <para>Description: Indicates the GPS measurement mode.  (eg: 2-dimensional, 3-dimensional)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A015ED5D-AAEA-4D58-8A86-3C586920EA0B}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.ProcessingMethod">
             <summary>
             <para>Name:     System.GPS.ProcessingMethod -- PKEY_GPS_ProcessingMethod</para>
             <para>Description: Indicates the name of the method used for location finding
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {59D49E61-840F-4AA9-A939-E2099B7F6399}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.Satellites">
             <summary>
             <para>Name:     System.GPS.Satellites -- PKEY_GPS_Satellites</para>
             <para>Description: Indicates the GPS satellites used for measurements
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {467EE575-1F25-4557-AD4E-B8B58B0D9C15}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.Speed">
             <summary>
             <para>Name:     System.GPS.Speed -- PKEY_GPS_Speed</para>
             <para>Description: Indicates the speed of the GPS receiver movement.  Calculated from PKEY_GPS_SpeedNumerator and 
            PKEY_GPS_SpeedDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {DA5D0862-6E76-4E1B-BABD-70021BD25494}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.SpeedDenominator">
             <summary>
             <para>Name:     System.GPS.SpeedDenominator -- PKEY_GPS_SpeedDenominator</para>
             <para>Description: Denominator of PKEY_GPS_Speed
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {7D122D5A-AE5E-4335-8841-D71E7CE72F53}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.SpeedNumerator">
             <summary>
             <para>Name:     System.GPS.SpeedNumerator -- PKEY_GPS_SpeedNumerator</para>
             <para>Description: Numerator of PKEY_GPS_Speed
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {ACC9CE3D-C213-4942-8B48-6D0820F21C6D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.SpeedRef">
             <summary>
             <para>Name:     System.GPS.SpeedRef -- PKEY_GPS_SpeedRef</para>
             <para>Description: Indicates the unit used to express the speed of the GPS receiver movement.  (eg: kilometers per hour, 
            miles per hour, knots).
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {ECF7F4C9-544F-4D6D-9D98-8AD79ADAF453}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.Status">
             <summary>
             <para>Name:     System.GPS.Status -- PKEY_GPS_Status</para>
             <para>Description: Indicates the status of the GPS receiver when the image was recorded.  (eg: measurement in progress, 
            measurement interoperability).
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {125491F4-818F-46B2-91B5-D537753617B2}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.Track">
             <summary>
             <para>Name:     System.GPS.Track -- PKEY_GPS_Track</para>
             <para>Description: Indicates the direction of the GPS receiver movement.  Calculated from PKEY_GPS_TrackNumerator and 
            PKEY_GPS_TrackDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {76C09943-7C33-49E3-9E7E-CDBA872CFADA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.TrackDenominator">
             <summary>
             <para>Name:     System.GPS.TrackDenominator -- PKEY_GPS_TrackDenominator</para>
             <para>Description: Denominator of PKEY_GPS_Track
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {C8D1920C-01F6-40C0-AC86-2F3A4AD00770}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.TrackNumerator">
             <summary>
             <para>Name:     System.GPS.TrackNumerator -- PKEY_GPS_TrackNumerator</para>
             <para>Description: Numerator of PKEY_GPS_Track
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {702926F4-44A6-43E1-AE71-45627116893B}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.TrackRef">
             <summary>
             <para>Name:     System.GPS.TrackRef -- PKEY_GPS_TrackRef</para>
             <para>Description: Indicates reference for the direction of the GPS receiver movement.  (eg: true direction, magnetic direction)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {35DBE6FE-44C3-4400-AAAE-D2C799C407E8}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemGPS.VersionID">
             <summary>
             <para>Name:     System.GPS.VersionID -- PKEY_GPS_VersionID</para>
             <para>Description: Indicates the version of the GPS information
            </para>
             <para>Type:     Buffer -- VT_VECTOR | VT_UI1  (For variants: VT_ARRAY | VT_UI1)</para>
             <para>FormatID: {22704DA4-C6B2-4A99-8E56-F16DF8C92599}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentity">
            <summary>
            System.Identity Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentity.Blob">
             <summary>
             <para>Name:     System.Identity.Blob -- PKEY_Identity_Blob</para>
             <para>Description: Blob used to import/export identities
            </para>
             <para>Type:     Blob -- VT_BLOB</para>
             <para>FormatID: {8C3B93A4-BAED-1A83-9A32-102EE313F6EB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentity.DisplayName">
             <summary>
             <para>Name:     System.Identity.DisplayName -- PKEY_Identity_DisplayName</para>
             <para>Description: Display Name
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {7D683FC9-D155-45A8-BB1F-89D19BCB792F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentity.IsMeIdentity">
             <summary>
             <para>Name:     System.Identity.IsMeIdentity -- PKEY_Identity_IsMeIdentity</para>
             <para>Description: Is it Me Identity
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {A4108708-09DF-4377-9DFC-6D99986D5A67}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentity.PrimaryEmailAddress">
             <summary>
             <para>Name:     System.Identity.PrimaryEmailAddress -- PKEY_Identity_PrimaryEmailAddress</para>
             <para>Description: Primary Email Address
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {FCC16823-BAED-4F24-9B32-A0982117F7FA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentity.ProviderID">
             <summary>
             <para>Name:     System.Identity.ProviderID -- PKEY_Identity_ProviderID</para>
             <para>Description: Provider ID
            </para>
             <para>Type:     Guid -- VT_CLSID</para>
             <para>FormatID: {74A7DE49-FA11-4D3D-A006-DB7E08675916}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentity.UniqueID">
             <summary>
             <para>Name:     System.Identity.UniqueID -- PKEY_Identity_UniqueID</para>
             <para>Description: Unique ID
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E55FC3B0-2B60-4220-918E-B21E8BF16016}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentity.UserName">
             <summary>
             <para>Name:     System.Identity.UserName -- PKEY_Identity_UserName</para>
             <para>Description: Identity User Name
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C4322503-78CA-49C6-9ACC-A68E2AFD7B6B}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentityProvider">
            <summary>
            System.IdentityProvider Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentityProvider.Name">
             <summary>
             <para>Name:     System.IdentityProvider.Name -- PKEY_IdentityProvider_Name</para>
             <para>Description: Identity Provider Name
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {B96EFF7B-35CA-4A35-8607-29E3A54C46EA}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemIdentityProvider.Picture">
             <summary>
             <para>Name:     System.IdentityProvider.Picture -- PKEY_IdentityProvider_Picture</para>
             <para>Description: Picture for the Identity Provider
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {2425166F-5642-4864-992F-98FD98F294C3}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage">
            <summary>
            System.Image Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.BitDepth">
             <summary>
             <para>Name:     System.Image.BitDepth -- PKEY_Image_BitDepth</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 7 (PIDISI_BITDEPTH)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.ColorSpace">
             <summary>
             <para>Name:     System.Image.ColorSpace -- PKEY_Image_ColorSpace</para>
             <para>Description: PropertyTagExifColorSpace
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 40961</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.CompressedBitsPerPixel">
             <summary>
             <para>Name:     System.Image.CompressedBitsPerPixel -- PKEY_Image_CompressedBitsPerPixel</para>
             <para>Description: Calculated from PKEY_Image_CompressedBitsPerPixelNumerator and PKEY_Image_CompressedBitsPerPixelDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {364B6FA9-37AB-482A-BE2B-AE02F60D4318}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.CompressedBitsPerPixelDenominator">
             <summary>
             <para>Name:     System.Image.CompressedBitsPerPixelDenominator -- PKEY_Image_CompressedBitsPerPixelDenominator</para>
             <para>Description: Denominator of PKEY_Image_CompressedBitsPerPixel.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {1F8844E1-24AD-4508-9DFD-5326A415CE02}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.CompressedBitsPerPixelNumerator">
             <summary>
             <para>Name:     System.Image.CompressedBitsPerPixelNumerator -- PKEY_Image_CompressedBitsPerPixelNumerator</para>
             <para>Description: Numerator of PKEY_Image_CompressedBitsPerPixel.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {D21A7148-D32C-4624-8900-277210F79C0F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.Compression">
             <summary>
             <para>Name:     System.Image.Compression -- PKEY_Image_Compression</para>
             <para>Description: Indicates the image compression level.  PropertyTagCompression.
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 259</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.CompressionText">
             <summary>
             <para>Name:     System.Image.CompressionText -- PKEY_Image_CompressionText</para>
             <para>Description: This is the user-friendly form of System.Image.Compression.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {3F08E66F-2F44-4BB9-A682-AC35D2562322}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.Dimensions">
             <summary>
             <para>Name:     System.Image.Dimensions -- PKEY_Image_Dimensions</para>
             <para>Description: Indicates the dimensions of the image.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 13 (PIDISI_DIMENSIONS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.HorizontalResolution">
             <summary>
             <para>Name:     System.Image.HorizontalResolution -- PKEY_Image_HorizontalResolution</para>
             <para>Description: 
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 5 (PIDISI_RESOLUTIONX)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.HorizontalSize">
             <summary>
             <para>Name:     System.Image.HorizontalSize -- PKEY_Image_HorizontalSize</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 3 (PIDISI_CX)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.ImageID">
            <summary>
            <para>Name:     System.Image.ImageID -- PKEY_Image_ImageID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {10DABE05-32AA-4C29-BF1A-63E2D220587F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.ResolutionUnit">
            <summary>
            <para>Name:     System.Image.ResolutionUnit -- PKEY_Image_ResolutionUnit</para>
            <para>Description: </para>
            <para>Type:     Int16 -- VT_I2</para>
            <para>FormatID: {19B51FA6-1F92-4A5C-AB48-7DF0ABD67444}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.VerticalResolution">
             <summary>
             <para>Name:     System.Image.VerticalResolution -- PKEY_Image_VerticalResolution</para>
             <para>Description: 
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 6 (PIDISI_RESOLUTIONY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemImage.VerticalSize">
             <summary>
             <para>Name:     System.Image.VerticalSize -- PKEY_Image_VerticalSize</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 4 (PIDISI_CY)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemJournal">
            <summary>
            System.Journal Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemJournal.Contacts">
            <summary>
            <para>Name:     System.Journal.Contacts -- PKEY_Journal_Contacts</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {DEA7C82C-1D89-4A66-9427-A4E3DEBABCB1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemJournal.EntryType">
            <summary>
            <para>Name:     System.Journal.EntryType -- PKEY_Journal_EntryType</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {95BEB1FC-326D-4644-B396-CD3ED90E6DDF}, 100</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLayoutPattern">
            <summary>
            System.LayoutPattern Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLayoutPattern.ContentViewModeForBrowse">
             <summary>
             <para>Name:     System.LayoutPattern.ContentViewModeForBrowse -- PKEY_LayoutPattern_ContentViewModeForBrowse</para>
             <para>Description: Specifies the layout pattern that the content view mode should apply for this item in the context of browsing.
            Register the regvalue under the name of "ContentViewModeLayoutPatternForBrowse".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 500</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLayoutPattern.ContentViewModeForSearch">
             <summary>
             <para>Name:     System.LayoutPattern.ContentViewModeForSearch -- PKEY_LayoutPattern_ContentViewModeForSearch</para>
             <para>Description: Specifies the layout pattern that the content view mode should apply for this item in the context of searching.
            Register the regvalue under the name of "ContentViewModeLayoutPatternForSearch".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 501</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink">
            <summary>
            System.Link Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink.Arguments">
            <summary>
            <para>Name:     System.Link.Arguments -- PKEY_Link_Arguments</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {436F2667-14E2-4FEB-B30A-146C53B5B674}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink.Comment">
            <summary>
            <para>Name:     System.Link.Comment -- PKEY_Link_Comment</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: (PSGUID_LINK) {B9B4B3FC-2B51-4A42-B5D8-324146AFCF25}, 5</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink.DateVisited">
            <summary>
            <para>Name:     System.Link.DateVisited -- PKEY_Link_DateVisited</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {5CBF2787-48CF-4208-B90E-EE5E5D420294}, 23  (PKEYs relating to URLs.  Used by IE History.)</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink.Description">
            <summary>
            <para>Name:     System.Link.Description -- PKEY_Link_Description</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {5CBF2787-48CF-4208-B90E-EE5E5D420294}, 21  (PKEYs relating to URLs.  Used by IE History.)</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink.Status">
             <summary>
             <para>Name:     System.Link.Status -- PKEY_Link_Status</para>
             <para>Description: 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (PSGUID_LINK) {B9B4B3FC-2B51-4A42-B5D8-324146AFCF25}, 3 (PID_LINK_TARGET_TYPE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink.TargetExtension">
             <summary>
             <para>Name:     System.Link.TargetExtension -- PKEY_Link_TargetExtension</para>
             <para>Description: The file extension of the link target.  See System.File.Extension
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {7A7D76F4-B630-4BD7-95FF-37CC51A975C9}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink.TargetParsingPath">
             <summary>
             <para>Name:     System.Link.TargetParsingPath -- PKEY_Link_TargetParsingPath</para>
             <para>Description: This is the shell namespace path to the target of the link item.  This path may be passed to 
            SHParseDisplayName to parse the path to the correct shell folder.
            
            If the target item is a file, the value is identical to System.ItemPathDisplay.
            
            If the target item cannot be accessed through the shell namespace, this value is VT_EMPTY.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_LINK) {B9B4B3FC-2B51-4A42-B5D8-324146AFCF25}, 2 (PID_LINK_TARGET)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink.TargetSFGAOFlags">
             <summary>
             <para>Name:     System.Link.TargetSFGAOFlags -- PKEY_Link_TargetSFGAOFlags</para>
             <para>Description: IShellFolder::GetAttributesOf flags for the target of a link, with SFGAO_PKEYSFGAOMASK 
            attributes masked out.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_LINK) {B9B4B3FC-2B51-4A42-B5D8-324146AFCF25}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink.TargetSFGAOFlagsStrings">
             <summary>
             <para>Name:     System.Link.TargetSFGAOFlagsStrings -- PKEY_Link_TargetSFGAOFlagsStrings</para>
             <para>Description: Expresses the SFGAO flags of a link as string values and is used as a query optimization.  See 
            PKEY_Shell_SFGAOFlagsStrings for possible values of this.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D6942081-D53B-443D-AD47-5E059D9CD27A}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemLink.TargetUrl">
            <summary>
            <para>Name:     System.Link.TargetUrl -- PKEY_Link_TargetUrl</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {5CBF2787-48CF-4208-B90E-EE5E5D420294}, 2  (PKEYs relating to URLs.  Used by IE History.)</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia">
            <summary>
            System.Media Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.AuthorUrl">
             <summary>
             <para>Name:     System.Media.AuthorUrl -- PKEY_Media_AuthorUrl</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 32 (PIDMSI_AUTHOR_URL)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.AverageLevel">
            <summary>
            <para>Name:     System.Media.AverageLevel -- PKEY_Media_AverageLevel</para>
            <para>Description: </para>
            <para>Type:     UInt32 -- VT_UI4</para>
            <para>FormatID: {09EDD5B6-B301-43C5-9990-D00302EFFD46}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.ClassPrimaryID">
             <summary>
             <para>Name:     System.Media.ClassPrimaryID -- PKEY_Media_ClassPrimaryID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 13 (PIDMSI_CLASS_PRIMARY_ID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.ClassSecondaryID">
             <summary>
             <para>Name:     System.Media.ClassSecondaryID -- PKEY_Media_ClassSecondaryID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 14 (PIDMSI_CLASS_SECONDARY_ID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.CollectionGroupID">
             <summary>
             <para>Name:     System.Media.CollectionGroupID -- PKEY_Media_CollectionGroupID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 24 (PIDMSI_COLLECTION_GROUP_ID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.CollectionID">
             <summary>
             <para>Name:     System.Media.CollectionID -- PKEY_Media_CollectionID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 25 (PIDMSI_COLLECTION_ID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.ContentDistributor">
             <summary>
             <para>Name:     System.Media.ContentDistributor -- PKEY_Media_ContentDistributor</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 18 (PIDMSI_CONTENTDISTRIBUTOR)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.ContentID">
             <summary>
             <para>Name:     System.Media.ContentID -- PKEY_Media_ContentID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 26 (PIDMSI_CONTENT_ID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.CreatorApplication">
             <summary>
             <para>Name:     System.Media.CreatorApplication -- PKEY_Media_CreatorApplication</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 27 (PIDMSI_TOOL_NAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.CreatorApplicationVersion">
             <summary>
             <para>Name:     System.Media.CreatorApplicationVersion -- PKEY_Media_CreatorApplicationVersion</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 28 (PIDMSI_TOOL_VERSION)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.DateEncoded">
             <summary>
             <para>Name:     System.Media.DateEncoded -- PKEY_Media_DateEncoded</para>
             <para>Description: DateTime is in UTC (in the doc, not file system).
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {2E4B640D-5019-46D8-8881-55414CC5CAA0}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.DateReleased">
            <summary>
            <para>Name:     System.Media.DateReleased -- PKEY_Media_DateReleased</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {DE41CC29-6971-4290-B472-F59F2E2F31E2}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.Duration">
             <summary>
             <para>Name:     System.Media.Duration -- PKEY_Media_Duration</para>
             <para>Description: 100ns units, not milliseconds
            </para>
             <para>Type:     UInt64 -- VT_UI8</para>
             <para>FormatID: (FMTID_AudioSummaryInformation) {64440490-4C8B-11D1-8B70-080036B11A03}, 3 (PIDASI_TIMELENGTH)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.DVDID">
             <summary>
             <para>Name:     System.Media.DVDID -- PKEY_Media_DVDID</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 15 (PIDMSI_DVDID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.EncodedBy">
             <summary>
             <para>Name:     System.Media.EncodedBy -- PKEY_Media_EncodedBy</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 36 (PIDMSI_ENCODED_BY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.EncodingSettings">
             <summary>
             <para>Name:     System.Media.EncodingSettings -- PKEY_Media_EncodingSettings</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 37 (PIDMSI_ENCODING_SETTINGS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.FrameCount">
             <summary>
             <para>Name:     System.Media.FrameCount -- PKEY_Media_FrameCount</para>
             <para>Description: Indicates the frame count for the image.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (PSGUID_IMAGESUMMARYINFORMATION) {6444048F-4C8B-11D1-8B70-080036B11A03}, 12 (PIDISI_FRAMECOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.MCDI">
             <summary>
             <para>Name:     System.Media.MCDI -- PKEY_Media_MCDI</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 16 (PIDMSI_MCDI)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.MetadataContentProvider">
             <summary>
             <para>Name:     System.Media.MetadataContentProvider -- PKEY_Media_MetadataContentProvider</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 17 (PIDMSI_PROVIDER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.Producer">
             <summary>
             <para>Name:     System.Media.Producer -- PKEY_Media_Producer</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 22 (PIDMSI_PRODUCER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.PromotionUrl">
             <summary>
             <para>Name:     System.Media.PromotionUrl -- PKEY_Media_PromotionUrl</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 33 (PIDMSI_PROMOTION_URL)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.ProtectionType">
             <summary>
             <para>Name:     System.Media.ProtectionType -- PKEY_Media_ProtectionType</para>
             <para>Description: If media is protected, how is it protected?
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 38</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.ProviderRating">
             <summary>
             <para>Name:     System.Media.ProviderRating -- PKEY_Media_ProviderRating</para>
             <para>Description: Rating (0 - 99) supplied by metadata provider
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 39</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.ProviderStyle">
             <summary>
             <para>Name:     System.Media.ProviderStyle -- PKEY_Media_ProviderStyle</para>
             <para>Description: Style of music or video, supplied by metadata provider
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 40</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.Publisher">
             <summary>
             <para>Name:     System.Media.Publisher -- PKEY_Media_Publisher</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 30 (PIDMSI_PUBLISHER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.SubscriptionContentId">
            <summary>
            <para>Name:     System.Media.SubscriptionContentId -- PKEY_Media_SubscriptionContentId</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {9AEBAE7A-9644-487D-A92C-657585ED751A}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.SubTitle">
             <summary>
             <para>Name:     System.Media.SubTitle -- PKEY_Media_SubTitle</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 38 (PIDSI_MUSIC_SUB_TITLE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.UniqueFileIdentifier">
             <summary>
             <para>Name:     System.Media.UniqueFileIdentifier -- PKEY_Media_UniqueFileIdentifier</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 35 (PIDMSI_UNIQUE_FILE_IDENTIFIER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.UserNoAutoInfo">
             <summary>
             <para>Name:     System.Media.UserNoAutoInfo -- PKEY_Media_UserNoAutoInfo</para>
             <para>Description: If true, do NOT alter this file's metadata. Set by user.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 41</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.UserWebUrl">
             <summary>
             <para>Name:     System.Media.UserWebUrl -- PKEY_Media_UserWebUrl</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 34 (PIDMSI_USER_WEB_URL)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.Writer">
             <summary>
             <para>Name:     System.Media.Writer -- PKEY_Media_Writer</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 23 (PIDMSI_WRITER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMedia.Year">
             <summary>
             <para>Name:     System.Media.Year -- PKEY_Media_Year</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 5 (PIDSI_MUSIC_YEAR)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage">
            <summary>
            System.Message Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.AttachmentContents">
            <summary>
            <para>Name:     System.Message.AttachmentContents -- PKEY_Message_AttachmentContents</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {3143BF7C-80A8-4854-8880-E2E40189BDD0}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.AttachmentNames">
             <summary>
             <para>Name:     System.Message.AttachmentNames -- PKEY_Message_AttachmentNames</para>
             <para>Description: The names of the attachments in a message
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 21</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.BccAddress">
             <summary>
             <para>Name:     System.Message.BccAddress -- PKEY_Message_BccAddress</para>
             <para>Description: Addresses in Bcc: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.BccName">
             <summary>
             <para>Name:     System.Message.BccName -- PKEY_Message_BccName</para>
             <para>Description: person names in Bcc: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.CcAddress">
             <summary>
             <para>Name:     System.Message.CcAddress -- PKEY_Message_CcAddress</para>
             <para>Description: Addresses in Cc: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.CcName">
             <summary>
             <para>Name:     System.Message.CcName -- PKEY_Message_CcName</para>
             <para>Description: person names in Cc: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.ConversationID">
            <summary>
            <para>Name:     System.Message.ConversationID -- PKEY_Message_ConversationID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {DC8F80BD-AF1E-4289-85B6-3DFC1B493992}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.ConversationIndex">
             <summary>
             <para>Name:     System.Message.ConversationIndex -- PKEY_Message_ConversationIndex</para>
             <para>Description: 
            </para>
             <para>Type:     Buffer -- VT_VECTOR | VT_UI1  (For variants: VT_ARRAY | VT_UI1)</para>
             <para>FormatID: {DC8F80BD-AF1E-4289-85B6-3DFC1B493992}, 101</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.DateReceived">
             <summary>
             <para>Name:     System.Message.DateReceived -- PKEY_Message_DateReceived</para>
             <para>Description: Date and Time communication was received
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 20</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.DateSent">
             <summary>
             <para>Name:     System.Message.DateSent -- PKEY_Message_DateSent</para>
             <para>Description: Date and Time communication was sent
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 19</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.Flags">
             <summary>
             <para>Name:     System.Message.Flags -- PKEY_Message_Flags</para>
             <para>Description: These are flags associated with email messages to know if a read receipt is pending, etc.
            The values stored here by Outlook are defined for PR_MESSAGE_FLAGS on MSDN. 
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {A82D9EE7-CA67-4312-965E-226BCEA85023}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.FromAddress">
            <summary>
            <para>Name:     System.Message.FromAddress -- PKEY_Message_FromAddress</para>
            <para>Description: </para>
            <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
            <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 13</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.FromName">
             <summary>
             <para>Name:     System.Message.FromName -- PKEY_Message_FromName</para>
             <para>Description: Address in from field as person name
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 14</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.HasAttachments">
             <summary>
             <para>Name:     System.Message.HasAttachments -- PKEY_Message_HasAttachments</para>
             <para>Description: 
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {9C1FCF74-2D97-41BA-B4AE-CB2E3661A6E4}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.IsFwdOrReply">
            <summary>
            <para>Name:     System.Message.IsFwdOrReply -- PKEY_Message_IsFwdOrReply</para>
            <para>Description: </para>
            <para>Type:     Int32 -- VT_I4</para>
            <para>FormatID: {9A9BC088-4F6D-469E-9919-E705412040F9}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.MessageClass">
             <summary>
             <para>Name:     System.Message.MessageClass -- PKEY_Message_MessageClass</para>
             <para>Description: What type of outlook msg this is (meeting, task, mail, etc.)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {CD9ED458-08CE-418F-A70E-F912C7BB9C5C}, 103</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.ProofInProgress">
             <summary>
             <para>Name:     System.Message.ProofInProgress -- PKEY_Message_ProofInProgress</para>
             <para>Description: This property will be true if the message junk email proofing is still in progress.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {9098F33C-9A7D-48A8-8DE5-2E1227A64E91}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.SenderAddress">
            <summary>
            <para>Name:     System.Message.SenderAddress -- PKEY_Message_SenderAddress</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {0BE1C8E7-1981-4676-AE14-FDD78F05A6E7}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.SenderName">
            <summary>
            <para>Name:     System.Message.SenderName -- PKEY_Message_SenderName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {0DA41CFA-D224-4A18-AE2F-596158DB4B3A}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.Store">
             <summary>
             <para>Name:     System.Message.Store -- PKEY_Message_Store</para>
             <para>Description: The store (aka protocol handler) FILE, MAIL, OUTLOOKEXPRESS
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 15</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.ToAddress">
             <summary>
             <para>Name:     System.Message.ToAddress -- PKEY_Message_ToAddress</para>
             <para>Description: Addresses in To: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 16</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.ToDoFlags">
             <summary>
             <para>Name:     System.Message.ToDoFlags -- PKEY_Message_ToDoFlags</para>
             <para>Description: Flags associated with a message flagged to know if it's still active, if it was custom flagged, etc.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {1F856A9F-6900-4ABA-9505-2D5F1B4D66CB}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.ToDoTitle">
            <summary>
            <para>Name:     System.Message.ToDoTitle -- PKEY_Message_ToDoTitle</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {BCCC8A3C-8CEF-42E5-9B1C-C69079398BC7}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMessage.ToName">
             <summary>
             <para>Name:     System.Message.ToName -- PKEY_Message_ToName</para>
             <para>Description: Person names in To: field
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {E3E0584C-B788-4A5A-BB20-7F5A44C9ACDD}, 17</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic">
            <summary>
            System.Music Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.AlbumArtist">
             <summary>
             <para>Name:     System.Music.AlbumArtist -- PKEY_Music_AlbumArtist</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 13 (PIDSI_MUSIC_ALBUM_ARTIST)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.AlbumID">
             <summary>
             <para>Name:     System.Music.AlbumID -- PKEY_Music_AlbumID</para>
             <para>Description: Concatenation of System.Music.AlbumArtist and System.Music.AlbumTitle, suitable for indexing and display.
            Used to differentiate albums with the same title from different artists.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.AlbumTitle">
             <summary>
             <para>Name:     System.Music.AlbumTitle -- PKEY_Music_AlbumTitle</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 4 (PIDSI_MUSIC_ALBUM)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.Artist">
             <summary>
             <para>Name:     System.Music.Artist -- PKEY_Music_Artist</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 2 (PIDSI_MUSIC_ARTIST)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.BeatsPerMinute">
             <summary>
             <para>Name:     System.Music.BeatsPerMinute -- PKEY_Music_BeatsPerMinute</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 35 (PIDSI_MUSIC_BEATS_PER_MINUTE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.Composer">
             <summary>
             <para>Name:     System.Music.Composer -- PKEY_Music_Composer</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 19 (PIDMSI_COMPOSER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.Conductor">
             <summary>
             <para>Name:     System.Music.Conductor -- PKEY_Music_Conductor</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 36 (PIDSI_MUSIC_CONDUCTOR)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.ContentGroupDescription">
             <summary>
             <para>Name:     System.Music.ContentGroupDescription -- PKEY_Music_ContentGroupDescription</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 33 (PIDSI_MUSIC_CONTENT_GROUP_DESCRIPTION)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.DisplayArtist">
             <summary>
             <para>Name:     System.Music.DisplayArtist -- PKEY_Music_DisplayArtist</para>
             <para>Description: This property returns the best representation of Album Artist for a given music file
            based upon AlbumArtist, ContributingArtist and compilation info.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {FD122953-FA93-4EF7-92C3-04C946B2F7C8}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.Genre">
             <summary>
             <para>Name:     System.Music.Genre -- PKEY_Music_Genre</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 11 (PIDSI_MUSIC_GENRE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.InitialKey">
             <summary>
             <para>Name:     System.Music.InitialKey -- PKEY_Music_InitialKey</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 34 (PIDSI_MUSIC_INITIAL_KEY)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.IsCompilation">
             <summary>
             <para>Name:     System.Music.IsCompilation -- PKEY_Music_IsCompilation</para>
             <para>Description: Indicates whether the file is part of a compilation.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {C449D5CB-9EA4-4809-82E8-AF9D59DED6D1}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.Lyrics">
             <summary>
             <para>Name:     System.Music.Lyrics -- PKEY_Music_Lyrics</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 12 (PIDSI_MUSIC_LYRICS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.Mood">
             <summary>
             <para>Name:     System.Music.Mood -- PKEY_Music_Mood</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 39 (PIDSI_MUSIC_MOOD)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.PartOfSet">
             <summary>
             <para>Name:     System.Music.PartOfSet -- PKEY_Music_PartOfSet</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 37 (PIDSI_MUSIC_PART_OF_SET)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.Period">
             <summary>
             <para>Name:     System.Music.Period -- PKEY_Music_Period</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 31 (PIDMSI_PERIOD)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.SynchronizedLyrics">
            <summary>
            <para>Name:     System.Music.SynchronizedLyrics -- PKEY_Music_SynchronizedLyrics</para>
            <para>Description: </para>
            <para>Type:     Blob -- VT_BLOB</para>
            <para>FormatID: {6B223B6A-162E-4AA9-B39F-05D678FC6D77}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemMusic.TrackNumber">
             <summary>
             <para>Name:     System.Music.TrackNumber -- PKEY_Music_TrackNumber</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_MUSIC) {56A3372E-CE9C-11D2-9F0E-006097C686F6}, 7 (PIDSI_MUSIC_TRACK)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemNote">
            <summary>
            System.Note Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemNote.Color">
            <summary>
            <para>Name:     System.Note.Color -- PKEY_Note_Color</para>
            <para>Description: </para>
            <para>Type:     UInt16 -- VT_UI2</para>
            <para>FormatID: {4776CAFA-BCE4-4CB1-A23E-265E76D8EB11}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemNote.ColorText">
             <summary>
             <para>Name:     System.Note.ColorText -- PKEY_Note_ColorText</para>
             <para>Description: This is the user-friendly form of System.Note.Color.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {46B4E8DE-CDB2-440D-885C-1658EB65B914}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto">
            <summary>
            System.Photo Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.Aperture">
             <summary>
             <para>Name:     System.Photo.Aperture -- PKEY_Photo_Aperture</para>
             <para>Description: PropertyTagExifAperture.  Calculated from PKEY_Photo_ApertureNumerator and PKEY_Photo_ApertureDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37378</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ApertureDenominator">
             <summary>
             <para>Name:     System.Photo.ApertureDenominator -- PKEY_Photo_ApertureDenominator</para>
             <para>Description: Denominator of PKEY_Photo_Aperture
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {E1A9A38B-6685-46BD-875E-570DC7AD7320}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ApertureNumerator">
             <summary>
             <para>Name:     System.Photo.ApertureNumerator -- PKEY_Photo_ApertureNumerator</para>
             <para>Description: Numerator of PKEY_Photo_Aperture
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {0337ECEC-39FB-4581-A0BD-4C4CC51E9914}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.Brightness">
             <summary>
             <para>Name:     System.Photo.Brightness -- PKEY_Photo_Brightness</para>
             <para>Description: This is the brightness of the photo.
            
            Calculated from PKEY_Photo_BrightnessNumerator and PKEY_Photo_BrightnessDenominator.
            
            The units are "APEX", normally in the range of -99.99 to 99.99. If the numerator of 
            the recorded value is FFFFFFFF.H, "Unknown" should be indicated.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {1A701BF6-478C-4361-83AB-3701BB053C58}, 100 (PropertyTagExifBrightness)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.BrightnessDenominator">
             <summary>
             <para>Name:     System.Photo.BrightnessDenominator -- PKEY_Photo_BrightnessDenominator</para>
             <para>Description: Denominator of PKEY_Photo_Brightness
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {6EBE6946-2321-440A-90F0-C043EFD32476}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.BrightnessNumerator">
             <summary>
             <para>Name:     System.Photo.BrightnessNumerator -- PKEY_Photo_BrightnessNumerator</para>
             <para>Description: Numerator of PKEY_Photo_Brightness
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {9E7D118F-B314-45A0-8CFB-D654B917C9E9}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.CameraManufacturer">
             <summary>
             <para>Name:     System.Photo.CameraManufacturer -- PKEY_Photo_CameraManufacturer</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 271 (PropertyTagEquipMake)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.CameraModel">
             <summary>
             <para>Name:     System.Photo.CameraModel -- PKEY_Photo_CameraModel</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 272 (PropertyTagEquipModel)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.CameraSerialNumber">
             <summary>
             <para>Name:     System.Photo.CameraSerialNumber -- PKEY_Photo_CameraSerialNumber</para>
             <para>Description: Serial number of camera that produced this photo
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 273</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.Contrast">
             <summary>
             <para>Name:     System.Photo.Contrast -- PKEY_Photo_Contrast</para>
             <para>Description: This indicates the direction of contrast processing applied by the camera 
            when the image was shot.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {2A785BA9-8D23-4DED-82E6-60A350C86A10}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ContrastText">
             <summary>
             <para>Name:     System.Photo.ContrastText -- PKEY_Photo_ContrastText</para>
             <para>Description: This is the user-friendly form of System.Photo.Contrast.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {59DDE9F2-5253-40EA-9A8B-479E96C6249A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.DateTaken">
             <summary>
             <para>Name:     System.Photo.DateTaken -- PKEY_Photo_DateTaken</para>
             <para>Description: PropertyTagExifDTOrig
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 36867</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.DigitalZoom">
             <summary>
             <para>Name:     System.Photo.DigitalZoom -- PKEY_Photo_DigitalZoom</para>
             <para>Description: PropertyTagExifDigitalZoom.  Calculated from PKEY_Photo_DigitalZoomNumerator and PKEY_Photo_DigitalZoomDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {F85BF840-A925-4BC2-B0C4-8E36B598679E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.DigitalZoomDenominator">
             <summary>
             <para>Name:     System.Photo.DigitalZoomDenominator -- PKEY_Photo_DigitalZoomDenominator</para>
             <para>Description: Denominator of PKEY_Photo_DigitalZoom
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {745BAF0E-E5C1-4CFB-8A1B-D031A0A52393}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.DigitalZoomNumerator">
             <summary>
             <para>Name:     System.Photo.DigitalZoomNumerator -- PKEY_Photo_DigitalZoomNumerator</para>
             <para>Description: Numerator of PKEY_Photo_DigitalZoom
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {16CBB924-6500-473B-A5BE-F1599BCBE413}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.Event">
             <summary>
             <para>Name:     System.Photo.Event -- PKEY_Photo_Event</para>
             <para>Description: The event at which the photo was taken
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 18248</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.EXIFVersion">
             <summary>
             <para>Name:     System.Photo.EXIFVersion -- PKEY_Photo_EXIFVersion</para>
             <para>Description: The EXIF version.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {D35F743A-EB2E-47F2-A286-844132CB1427}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureBias">
             <summary>
             <para>Name:     System.Photo.ExposureBias -- PKEY_Photo_ExposureBias</para>
             <para>Description: PropertyTagExifExposureBias.  Calculated from PKEY_Photo_ExposureBiasNumerator and PKEY_Photo_ExposureBiasDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37380</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureBiasDenominator">
             <summary>
             <para>Name:     System.Photo.ExposureBiasDenominator -- PKEY_Photo_ExposureBiasDenominator</para>
             <para>Description: Denominator of PKEY_Photo_ExposureBias
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {AB205E50-04B7-461C-A18C-2F233836E627}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureBiasNumerator">
             <summary>
             <para>Name:     System.Photo.ExposureBiasNumerator -- PKEY_Photo_ExposureBiasNumerator</para>
             <para>Description: Numerator of PKEY_Photo_ExposureBias
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {738BF284-1D87-420B-92CF-5834BF6EF9ED}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureIndex">
             <summary>
             <para>Name:     System.Photo.ExposureIndex -- PKEY_Photo_ExposureIndex</para>
             <para>Description: PropertyTagExifExposureIndex.  Calculated from PKEY_Photo_ExposureIndexNumerator and PKEY_Photo_ExposureIndexDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {967B5AF8-995A-46ED-9E11-35B3C5B9782D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureIndexDenominator">
             <summary>
             <para>Name:     System.Photo.ExposureIndexDenominator -- PKEY_Photo_ExposureIndexDenominator</para>
             <para>Description: Denominator of PKEY_Photo_ExposureIndex
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {93112F89-C28B-492F-8A9D-4BE2062CEE8A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureIndexNumerator">
             <summary>
             <para>Name:     System.Photo.ExposureIndexNumerator -- PKEY_Photo_ExposureIndexNumerator</para>
             <para>Description: Numerator of PKEY_Photo_ExposureIndex
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {CDEDCF30-8919-44DF-8F4C-4EB2FFDB8D89}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureProgram">
             <summary>
             <para>Name:     System.Photo.ExposureProgram -- PKEY_Photo_ExposureProgram</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 34850 (PropertyTagExifExposureProg)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureProgramText">
             <summary>
             <para>Name:     System.Photo.ExposureProgramText -- PKEY_Photo_ExposureProgramText</para>
             <para>Description: This is the user-friendly form of System.Photo.ExposureProgram.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {FEC690B7-5F30-4646-AE47-4CAAFBA884A3}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureTime">
             <summary>
             <para>Name:     System.Photo.ExposureTime -- PKEY_Photo_ExposureTime</para>
             <para>Description: PropertyTagExifExposureTime.  Calculated from  PKEY_Photo_ExposureTimeNumerator and PKEY_Photo_ExposureTimeDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 33434</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureTimeDenominator">
             <summary>
             <para>Name:     System.Photo.ExposureTimeDenominator -- PKEY_Photo_ExposureTimeDenominator</para>
             <para>Description: Denominator of PKEY_Photo_ExposureTime
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {55E98597-AD16-42E0-B624-21599A199838}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ExposureTimeNumerator">
             <summary>
             <para>Name:     System.Photo.ExposureTimeNumerator -- PKEY_Photo_ExposureTimeNumerator</para>
             <para>Description: Numerator of PKEY_Photo_ExposureTime
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {257E44E2-9031-4323-AC38-85C552871B2E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.Flash">
             <summary>
             <para>Name:     System.Photo.Flash -- PKEY_Photo_Flash</para>
             <para>Description: PropertyTagExifFlash
            </para>
             <para>Type:     Byte -- VT_UI1</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37385</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FlashEnergy">
             <summary>
             <para>Name:     System.Photo.FlashEnergy -- PKEY_Photo_FlashEnergy</para>
             <para>Description: PropertyTagExifFlashEnergy.  Calculated from PKEY_Photo_FlashEnergyNumerator and PKEY_Photo_FlashEnergyDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 41483</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FlashEnergyDenominator">
             <summary>
             <para>Name:     System.Photo.FlashEnergyDenominator -- PKEY_Photo_FlashEnergyDenominator</para>
             <para>Description: Denominator of PKEY_Photo_FlashEnergy
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {D7B61C70-6323-49CD-A5FC-C84277162C97}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FlashEnergyNumerator">
             <summary>
             <para>Name:     System.Photo.FlashEnergyNumerator -- PKEY_Photo_FlashEnergyNumerator</para>
             <para>Description: Numerator of PKEY_Photo_FlashEnergy
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {FCAD3D3D-0858-400F-AAA3-2F66CCE2A6BC}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FlashManufacturer">
            <summary>
            <para>Name:     System.Photo.FlashManufacturer -- PKEY_Photo_FlashManufacturer</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {AABAF6C9-E0C5-4719-8585-57B103E584FE}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FlashModel">
            <summary>
            <para>Name:     System.Photo.FlashModel -- PKEY_Photo_FlashModel</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {FE83BB35-4D1A-42E2-916B-06F3E1AF719E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FlashText">
             <summary>
             <para>Name:     System.Photo.FlashText -- PKEY_Photo_FlashText</para>
             <para>Description: This is the user-friendly form of System.Photo.Flash.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6B8B68F6-200B-47EA-8D25-D8050F57339F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FNumber">
             <summary>
             <para>Name:     System.Photo.FNumber -- PKEY_Photo_FNumber</para>
             <para>Description: PropertyTagExifFNumber.  Calculated from PKEY_Photo_FNumberNumerator and PKEY_Photo_FNumberDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 33437</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FNumberDenominator">
             <summary>
             <para>Name:     System.Photo.FNumberDenominator -- PKEY_Photo_FNumberDenominator</para>
             <para>Description: Denominator of PKEY_Photo_FNumber
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {E92A2496-223B-4463-A4E3-30EABBA79D80}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FNumberNumerator">
             <summary>
             <para>Name:     System.Photo.FNumberNumerator -- PKEY_Photo_FNumberNumerator</para>
             <para>Description: Numerator of PKEY_Photo_FNumber
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {1B97738A-FDFC-462F-9D93-1957E08BE90C}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FocalLength">
             <summary>
             <para>Name:     System.Photo.FocalLength -- PKEY_Photo_FocalLength</para>
             <para>Description: PropertyTagExifFocalLength.  Calculated from PKEY_Photo_FocalLengthNumerator and PKEY_Photo_FocalLengthDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37386</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FocalLengthDenominator">
             <summary>
             <para>Name:     System.Photo.FocalLengthDenominator -- PKEY_Photo_FocalLengthDenominator</para>
             <para>Description: Denominator of PKEY_Photo_FocalLength
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {305BC615-DCA1-44A5-9FD4-10C0BA79412E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FocalLengthInFilm">
            <summary>
            <para>Name:     System.Photo.FocalLengthInFilm -- PKEY_Photo_FocalLengthInFilm</para>
            <para>Description: </para>
            <para>Type:     UInt16 -- VT_UI2</para>
            <para>FormatID: {A0E74609-B84D-4F49-B860-462BD9971F98}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FocalLengthNumerator">
             <summary>
             <para>Name:     System.Photo.FocalLengthNumerator -- PKEY_Photo_FocalLengthNumerator</para>
             <para>Description: Numerator of PKEY_Photo_FocalLength
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {776B6B3B-1E3D-4B0C-9A0E-8FBAF2A8492A}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FocalPlaneXResolution">
             <summary>
             <para>Name:     System.Photo.FocalPlaneXResolution -- PKEY_Photo_FocalPlaneXResolution</para>
             <para>Description: PropertyTagExifFocalXRes.  Calculated from PKEY_Photo_FocalPlaneXResolutionNumerator and 
            PKEY_Photo_FocalPlaneXResolutionDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {CFC08D97-C6F7-4484-89DD-EBEF4356FE76}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FocalPlaneXResolutionDenominator">
             <summary>
             <para>Name:     System.Photo.FocalPlaneXResolutionDenominator -- PKEY_Photo_FocalPlaneXResolutionDenominator</para>
             <para>Description: Denominator of PKEY_Photo_FocalPlaneXResolution
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {0933F3F5-4786-4F46-A8E8-D64DD37FA521}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FocalPlaneXResolutionNumerator">
             <summary>
             <para>Name:     System.Photo.FocalPlaneXResolutionNumerator -- PKEY_Photo_FocalPlaneXResolutionNumerator</para>
             <para>Description: Numerator of PKEY_Photo_FocalPlaneXResolution
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {DCCB10AF-B4E2-4B88-95F9-031B4D5AB490}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FocalPlaneYResolution">
             <summary>
             <para>Name:     System.Photo.FocalPlaneYResolution -- PKEY_Photo_FocalPlaneYResolution</para>
             <para>Description: PropertyTagExifFocalYRes.  Calculated from PKEY_Photo_FocalPlaneYResolutionNumerator and 
            PKEY_Photo_FocalPlaneYResolutionDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {4FFFE4D0-914F-4AC4-8D6F-C9C61DE169B1}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FocalPlaneYResolutionDenominator">
             <summary>
             <para>Name:     System.Photo.FocalPlaneYResolutionDenominator -- PKEY_Photo_FocalPlaneYResolutionDenominator</para>
             <para>Description: Denominator of PKEY_Photo_FocalPlaneYResolution
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {1D6179A6-A876-4031-B013-3347B2B64DC8}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.FocalPlaneYResolutionNumerator">
             <summary>
             <para>Name:     System.Photo.FocalPlaneYResolutionNumerator -- PKEY_Photo_FocalPlaneYResolutionNumerator</para>
             <para>Description: Numerator of PKEY_Photo_FocalPlaneYResolution
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {A2E541C5-4440-4BA8-867E-75CFC06828CD}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.GainControl">
             <summary>
             <para>Name:     System.Photo.GainControl -- PKEY_Photo_GainControl</para>
             <para>Description: This indicates the degree of overall image gain adjustment.
            
            Calculated from PKEY_Photo_GainControlNumerator and PKEY_Photo_GainControlDenominator.
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {FA304789-00C7-4D80-904A-1E4DCC7265AA}, 100 (PropertyTagExifGainControl)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.GainControlDenominator">
             <summary>
             <para>Name:     System.Photo.GainControlDenominator -- PKEY_Photo_GainControlDenominator</para>
             <para>Description: Denominator of PKEY_Photo_GainControl
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {42864DFD-9DA4-4F77-BDED-4AAD7B256735}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.GainControlNumerator">
             <summary>
             <para>Name:     System.Photo.GainControlNumerator -- PKEY_Photo_GainControlNumerator</para>
             <para>Description: Numerator of PKEY_Photo_GainControl
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {8E8ECF7C-B7B8-4EB8-A63F-0EE715C96F9E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.GainControlText">
             <summary>
             <para>Name:     System.Photo.GainControlText -- PKEY_Photo_GainControlText</para>
             <para>Description: This is the user-friendly form of System.Photo.GainControl.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C06238B2-0BF9-4279-A723-25856715CB9D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ISOSpeed">
             <summary>
             <para>Name:     System.Photo.ISOSpeed -- PKEY_Photo_ISOSpeed</para>
             <para>Description: PropertyTagExifISOSpeed
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 34855</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.LensManufacturer">
            <summary>
            <para>Name:     System.Photo.LensManufacturer -- PKEY_Photo_LensManufacturer</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E6DDCAF7-29C5-4F0A-9A68-D19412EC7090}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.LensModel">
            <summary>
            <para>Name:     System.Photo.LensModel -- PKEY_Photo_LensModel</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {E1277516-2B5F-4869-89B1-2E585BD38B7A}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.LightSource">
             <summary>
             <para>Name:     System.Photo.LightSource -- PKEY_Photo_LightSource</para>
             <para>Description: PropertyTagExifLightSource
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37384</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.MakerNote">
            <summary>
            <para>Name:     System.Photo.MakerNote -- PKEY_Photo_MakerNote</para>
            <para>Description: </para>
            <para>Type:     Buffer -- VT_VECTOR | VT_UI1  (For variants: VT_ARRAY | VT_UI1)</para>
            <para>FormatID: {FA303353-B659-4052-85E9-BCAC79549B84}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.MakerNoteOffset">
            <summary>
            <para>Name:     System.Photo.MakerNoteOffset -- PKEY_Photo_MakerNoteOffset</para>
            <para>Description: </para>
            <para>Type:     UInt64 -- VT_UI8</para>
            <para>FormatID: {813F4124-34E6-4D17-AB3E-6B1F3C2247A1}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.MaxAperture">
             <summary>
             <para>Name:     System.Photo.MaxAperture -- PKEY_Photo_MaxAperture</para>
             <para>Description: Calculated from PKEY_Photo_MaxApertureNumerator and PKEY_Photo_MaxApertureDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: {08F6D7C2-E3F2-44FC-AF1E-5AA5C81A2D3E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.MaxApertureDenominator">
             <summary>
             <para>Name:     System.Photo.MaxApertureDenominator -- PKEY_Photo_MaxApertureDenominator</para>
             <para>Description: Denominator of PKEY_Photo_MaxAperture
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {C77724D4-601F-46C5-9B89-C53F93BCEB77}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.MaxApertureNumerator">
             <summary>
             <para>Name:     System.Photo.MaxApertureNumerator -- PKEY_Photo_MaxApertureNumerator</para>
             <para>Description: Numerator of PKEY_Photo_MaxAperture
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {C107E191-A459-44C5-9AE6-B952AD4B906D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.MeteringMode">
             <summary>
             <para>Name:     System.Photo.MeteringMode -- PKEY_Photo_MeteringMode</para>
             <para>Description: PropertyTagExifMeteringMode
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37383</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.MeteringModeText">
             <summary>
             <para>Name:     System.Photo.MeteringModeText -- PKEY_Photo_MeteringModeText</para>
             <para>Description: This is the user-friendly form of System.Photo.MeteringMode.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {F628FD8C-7BA8-465A-A65B-C5AA79263A9E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.Orientation">
             <summary>
             <para>Name:     System.Photo.Orientation -- PKEY_Photo_Orientation</para>
             <para>Description: This is the image orientation viewed in terms of rows and columns.
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 274 (PropertyTagOrientation)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.OrientationText">
             <summary>
             <para>Name:     System.Photo.OrientationText -- PKEY_Photo_OrientationText</para>
             <para>Description: This is the user-friendly form of System.Photo.Orientation.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A9EA193C-C511-498A-A06B-58E2776DCC28}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.PeopleNames">
             <summary>
             <para>Name:     System.Photo.PeopleNames -- PKEY_Photo_PeopleNames</para>
             <para>Description: The people tags on an image.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: {E8309B6E-084C-49B4-B1FC-90A80331B638}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.PhotometricInterpretation">
             <summary>
             <para>Name:     System.Photo.PhotometricInterpretation -- PKEY_Photo_PhotometricInterpretation</para>
             <para>Description: This is the pixel composition. In JPEG compressed data, a JPEG marker is used 
            instead of this property.
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: {341796F1-1DF9-4B1C-A564-91BDEFA43877}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.PhotometricInterpretationText">
             <summary>
             <para>Name:     System.Photo.PhotometricInterpretationText -- PKEY_Photo_PhotometricInterpretationText</para>
             <para>Description: This is the user-friendly form of System.Photo.PhotometricInterpretation.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {821437D6-9EAB-4765-A589-3B1CBBD22A61}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ProgramMode">
             <summary>
             <para>Name:     System.Photo.ProgramMode -- PKEY_Photo_ProgramMode</para>
             <para>Description: This is the class of the program used by the camera to set exposure when the 
            picture is taken.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {6D217F6D-3F6A-4825-B470-5F03CA2FBE9B}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ProgramModeText">
             <summary>
             <para>Name:     System.Photo.ProgramModeText -- PKEY_Photo_ProgramModeText</para>
             <para>Description: This is the user-friendly form of System.Photo.ProgramMode.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {7FE3AA27-2648-42F3-89B0-454E5CB150C3}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.RelatedSoundFile">
            <summary>
            <para>Name:     System.Photo.RelatedSoundFile -- PKEY_Photo_RelatedSoundFile</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {318A6B45-087F-4DC2-B8CC-05359551FC9E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.Saturation">
             <summary>
             <para>Name:     System.Photo.Saturation -- PKEY_Photo_Saturation</para>
             <para>Description: This indicates the direction of saturation processing applied by the camera when 
            the image was shot.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {49237325-A95A-4F67-B211-816B2D45D2E0}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.SaturationText">
             <summary>
             <para>Name:     System.Photo.SaturationText -- PKEY_Photo_SaturationText</para>
             <para>Description: This is the user-friendly form of System.Photo.Saturation.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {61478C08-B600-4A84-BBE4-E99C45F0A072}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.Sharpness">
             <summary>
             <para>Name:     System.Photo.Sharpness -- PKEY_Photo_Sharpness</para>
             <para>Description: This indicates the direction of sharpness processing applied by the camera when 
            the image was shot.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {FC6976DB-8349-4970-AE97-B3C5316A08F0}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.SharpnessText">
             <summary>
             <para>Name:     System.Photo.SharpnessText -- PKEY_Photo_SharpnessText</para>
             <para>Description: This is the user-friendly form of System.Photo.Sharpness.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {51EC3F47-DD50-421D-8769-334F50424B1E}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ShutterSpeed">
             <summary>
             <para>Name:     System.Photo.ShutterSpeed -- PKEY_Photo_ShutterSpeed</para>
             <para>Description: PropertyTagExifShutterSpeed.  Calculated from PKEY_Photo_ShutterSpeedNumerator and PKEY_Photo_ShutterSpeedDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37377</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ShutterSpeedDenominator">
             <summary>
             <para>Name:     System.Photo.ShutterSpeedDenominator -- PKEY_Photo_ShutterSpeedDenominator</para>
             <para>Description: Denominator of PKEY_Photo_ShutterSpeed
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {E13D8975-81C7-4948-AE3F-37CAE11E8FF7}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.ShutterSpeedNumerator">
             <summary>
             <para>Name:     System.Photo.ShutterSpeedNumerator -- PKEY_Photo_ShutterSpeedNumerator</para>
             <para>Description: Numerator of PKEY_Photo_ShutterSpeed
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: {16EA4042-D6F4-4BCA-8349-7C78D30FB333}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.SubjectDistance">
             <summary>
             <para>Name:     System.Photo.SubjectDistance -- PKEY_Photo_SubjectDistance</para>
             <para>Description: PropertyTagExifSubjectDist.  Calculated from PKEY_Photo_SubjectDistanceNumerator and PKEY_Photo_SubjectDistanceDenominator
            </para>
             <para>Type:     Double -- VT_R8</para>
             <para>FormatID: (FMTID_ImageProperties) {14B81DA1-0135-4D31-96D9-6CBFC9671A99}, 37382</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.SubjectDistanceDenominator">
             <summary>
             <para>Name:     System.Photo.SubjectDistanceDenominator -- PKEY_Photo_SubjectDistanceDenominator</para>
             <para>Description: Denominator of PKEY_Photo_SubjectDistance
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {0C840A88-B043-466D-9766-D4B26DA3FA77}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.SubjectDistanceNumerator">
             <summary>
             <para>Name:     System.Photo.SubjectDistanceNumerator -- PKEY_Photo_SubjectDistanceNumerator</para>
             <para>Description: Numerator of PKEY_Photo_SubjectDistance
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {8AF4961C-F526-43E5-AA81-DB768219178D}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.TagViewAggregate">
             <summary>
             <para>Name:     System.Photo.TagViewAggregate -- PKEY_Photo_TagViewAggregate</para>
             <para>Description: A read-only aggregation of tag-like properties for use in building views.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)  Legacy code may treat this as VT_LPSTR.</para>
             <para>FormatID: {B812F15D-C2D8-4BBF-BACD-79744346113F}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.TranscodedForSync">
            <summary>
            <para>Name:     System.Photo.TranscodedForSync -- PKEY_Photo_TranscodedForSync</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {9A8EBB75-6458-4E82-BACB-35C0095B03BB}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.WhiteBalance">
             <summary>
             <para>Name:     System.Photo.WhiteBalance -- PKEY_Photo_WhiteBalance</para>
             <para>Description: This indicates the white balance mode set when the image was shot.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {EE3D3D8A-5381-4CFA-B13B-AAF66B5F4EC9}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPhoto.WhiteBalanceText">
             <summary>
             <para>Name:     System.Photo.WhiteBalanceText -- PKEY_Photo_WhiteBalanceText</para>
             <para>Description: This is the user-friendly form of System.Photo.WhiteBalance.  Not intended to be parsed 
            programmatically.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6336B95E-C7A7-426D-86FD-7AE3D39C84B4}, 100</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup">
            <summary>
            System.PropGroup Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Advanced">
            <summary>
            <para>Name:     System.PropGroup.Advanced -- PKEY_PropGroup_Advanced</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {900A403B-097B-4B95-8AE2-071FDAEEB118}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Audio">
            <summary>
            <para>Name:     System.PropGroup.Audio -- PKEY_PropGroup_Audio</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {2804D469-788F-48AA-8570-71B9C187E138}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Calendar">
            <summary>
            <para>Name:     System.PropGroup.Calendar -- PKEY_PropGroup_Calendar</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {9973D2B5-BFD8-438A-BA94-5349B293181A}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Camera">
            <summary>
            <para>Name:     System.PropGroup.Camera -- PKEY_PropGroup_Camera</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {DE00DE32-547E-4981-AD4B-542F2E9007D8}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Contact">
            <summary>
            <para>Name:     System.PropGroup.Contact -- PKEY_PropGroup_Contact</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {DF975FD3-250A-4004-858F-34E29A3E37AA}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Content">
            <summary>
            <para>Name:     System.PropGroup.Content -- PKEY_PropGroup_Content</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {D0DAB0BA-368A-4050-A882-6C010FD19A4F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Description">
            <summary>
            <para>Name:     System.PropGroup.Description -- PKEY_PropGroup_Description</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {8969B275-9475-4E00-A887-FF93B8B41E44}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.FileSystem">
            <summary>
            <para>Name:     System.PropGroup.FileSystem -- PKEY_PropGroup_FileSystem</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {E3A7D2C1-80FC-4B40-8F34-30EA111BDC2E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.General">
            <summary>
            <para>Name:     System.PropGroup.General -- PKEY_PropGroup_General</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {CC301630-B192-4C22-B372-9F4C6D338E07}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.GPS">
            <summary>
            <para>Name:     System.PropGroup.GPS -- PKEY_PropGroup_GPS</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {F3713ADA-90E3-4E11-AAE5-FDC17685B9BE}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Image">
            <summary>
            <para>Name:     System.PropGroup.Image -- PKEY_PropGroup_Image</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {E3690A87-0FA8-4A2A-9A9F-FCE8827055AC}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Media">
            <summary>
            <para>Name:     System.PropGroup.Media -- PKEY_PropGroup_Media</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {61872CF7-6B5E-4B4B-AC2D-59DA84459248}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.MediaAdvanced">
            <summary>
            <para>Name:     System.PropGroup.MediaAdvanced -- PKEY_PropGroup_MediaAdvanced</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {8859A284-DE7E-4642-99BA-D431D044B1EC}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Message">
            <summary>
            <para>Name:     System.PropGroup.Message -- PKEY_PropGroup_Message</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {7FD7259D-16B4-4135-9F97-7C96ECD2FA9E}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Music">
            <summary>
            <para>Name:     System.PropGroup.Music -- PKEY_PropGroup_Music</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {68DD6094-7216-40F1-A029-43FE7127043F}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Origin">
            <summary>
            <para>Name:     System.PropGroup.Origin -- PKEY_PropGroup_Origin</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {2598D2FB-5569-4367-95DF-5CD3A177E1A5}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.PhotoAdvanced">
            <summary>
            <para>Name:     System.PropGroup.PhotoAdvanced -- PKEY_PropGroup_PhotoAdvanced</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {0CB2BF5A-9EE7-4A86-8222-F01E07FDADAF}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.RecordedTV">
            <summary>
            <para>Name:     System.PropGroup.RecordedTV -- PKEY_PropGroup_RecordedTV</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {E7B33238-6584-4170-A5C0-AC25EFD9DA56}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropGroup.Video">
            <summary>
            <para>Name:     System.PropGroup.Video -- PKEY_PropGroup_Video</para>
            <para>Description: </para>
            <para>Type:     Null -- VT_NULL</para>
            <para>FormatID: {BEBE0920-7671-4C54-A3EB-49FDDFC191EE}, 100</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList">
            <summary>
            System.PropList Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.ConflictPrompt">
             <summary>
             <para>Name:     System.PropList.ConflictPrompt -- PKEY_PropList_ConflictPrompt</para>
             <para>Description: The list of properties to show in the file operation conflict resolution dialog. Properties with empty 
            values will not be displayed. Register under the regvalue of "ConflictPrompt".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 11</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.ContentViewModeForBrowse">
             <summary>
             <para>Name:     System.PropList.ContentViewModeForBrowse -- PKEY_PropList_ContentViewModeForBrowse</para>
             <para>Description: The list of properties to show in the content view mode of an item in the context of browsing.
            Register the regvalue under the name of "ContentViewModeForBrowse".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 13</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.ContentViewModeForSearch">
             <summary>
             <para>Name:     System.PropList.ContentViewModeForSearch -- PKEY_PropList_ContentViewModeForSearch</para>
             <para>Description: The list of properties to show in the content view mode of an item in the context of searching.
            Register the regvalue under the name of "ContentViewModeForSearch".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 14</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.ExtendedTileInfo">
             <summary>
             <para>Name:     System.PropList.ExtendedTileInfo -- PKEY_PropList_ExtendedTileInfo</para>
             <para>Description: The list of properties to show in the listview on extended tiles. Register under the regvalue of 
            "ExtendedTileInfo".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.FileOperationPrompt">
             <summary>
             <para>Name:     System.PropList.FileOperationPrompt -- PKEY_PropList_FileOperationPrompt</para>
             <para>Description: The list of properties to show in the file operation confirmation dialog. Properties with empty values 
            will not be displayed. If this list is not specified, then the InfoTip property list is used instead. 
            Register under the regvalue of "FileOperationPrompt".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 10</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.FullDetails">
             <summary>
             <para>Name:     System.PropList.FullDetails -- PKEY_PropList_FullDetails</para>
             <para>Description: The list of all the properties to show in the details page.  Property groups can be included in this list 
            in order to more easily organize the UI.  Register under the regvalue of "FullDetails".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.InfoTip">
             <summary>
             <para>Name:     System.PropList.InfoTip -- PKEY_PropList_InfoTip</para>
             <para>Description: The list of properties to show in the infotip. Properties with empty values will not be displayed. Register 
            under the regvalue of "InfoTip".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 4 (PID_PROPLIST_INFOTIP)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.NonPersonal">
             <summary>
             <para>Name:     System.PropList.NonPersonal -- PKEY_PropList_NonPersonal</para>
             <para>Description: The list of properties that are considered 'non-personal'. When told to remove all non-personal properties 
            from a given file, the system will leave these particular properties untouched. Register under the regvalue 
            of "NonPersonal".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {49D1091F-082E-493F-B23F-D2308AA9668C}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.PreviewDetails">
             <summary>
             <para>Name:     System.PropList.PreviewDetails -- PKEY_PropList_PreviewDetails</para>
             <para>Description: The list of properties to display in the preview pane.  Register under the regvalue of "PreviewDetails".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.PreviewTitle">
             <summary>
             <para>Name:     System.PropList.PreviewTitle -- PKEY_PropList_PreviewTitle</para>
             <para>Description: The one or two properties to display in the preview pane title section.  The optional second property is 
            displayed as a subtitle.  Register under the regvalue of "PreviewTitle".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 6</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.QuickTip">
             <summary>
             <para>Name:     System.PropList.QuickTip -- PKEY_PropList_QuickTip</para>
             <para>Description: The list of properties to show in the infotip when the item is on a slow network. Properties with empty 
            values will not be displayed. Register under the regvalue of "QuickTip".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 5 (PID_PROPLIST_QUICKTIP)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.TileInfo">
             <summary>
             <para>Name:     System.PropList.TileInfo -- PKEY_PropList_TileInfo</para>
             <para>Description: The list of properties to show in the listview on tiles. Register under the regvalue of "TileInfo".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {C9944A21-A406-48FE-8225-AEC7E24C211B}, 3 (PID_PROPLIST_TILEINFO)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemPropList.XPDetailsPanel">
             <summary>
             <para>Name:     System.PropList.XPDetailsPanel -- PKEY_PropList_XPDetailsPanel</para>
             <para>Description: The list of properties to display in the XP webview details panel. Obsolete.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_WebView) {F2275480-F782-4291-BD94-F13693513AEC}, 0 (PID_DISPLAY_PROPERTIES)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV">
            <summary>
            System.RecordedTV Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.ChannelNumber">
             <summary>
             <para>Name:     System.RecordedTV.ChannelNumber -- PKEY_RecordedTV_ChannelNumber</para>
             <para>Description: Example: 42
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 7</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.Credits">
             <summary>
             <para>Name:     System.RecordedTV.Credits -- PKEY_RecordedTV_Credits</para>
             <para>Description: Example: "Don Messick/Frank Welker/Casey Kasem/Heather North/Nicole Jaffe;;;"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.DateContentExpires">
            <summary>
            <para>Name:     System.RecordedTV.DateContentExpires -- PKEY_RecordedTV_DateContentExpires</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 15</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.EpisodeName">
             <summary>
             <para>Name:     System.RecordedTV.EpisodeName -- PKEY_RecordedTV_EpisodeName</para>
             <para>Description: Example: "Nowhere to Hyde"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.IsATSCContent">
            <summary>
            <para>Name:     System.RecordedTV.IsATSCContent -- PKEY_RecordedTV_IsATSCContent</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 16</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.IsClosedCaptioningAvailable">
            <summary>
            <para>Name:     System.RecordedTV.IsClosedCaptioningAvailable -- PKEY_RecordedTV_IsClosedCaptioningAvailable</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 12</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.IsDTVContent">
            <summary>
            <para>Name:     System.RecordedTV.IsDTVContent -- PKEY_RecordedTV_IsDTVContent</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 17</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.IsHDContent">
            <summary>
            <para>Name:     System.RecordedTV.IsHDContent -- PKEY_RecordedTV_IsHDContent</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 18</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.IsRepeatBroadcast">
            <summary>
            <para>Name:     System.RecordedTV.IsRepeatBroadcast -- PKEY_RecordedTV_IsRepeatBroadcast</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 13</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.IsSAP">
            <summary>
            <para>Name:     System.RecordedTV.IsSAP -- PKEY_RecordedTV_IsSAP</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 14</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.NetworkAffiliation">
            <summary>
            <para>Name:     System.RecordedTV.NetworkAffiliation -- PKEY_RecordedTV_NetworkAffiliation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {2C53C813-FB63-4E22-A1AB-0B331CA1E273}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.OriginalBroadcastDate">
            <summary>
            <para>Name:     System.RecordedTV.OriginalBroadcastDate -- PKEY_RecordedTV_OriginalBroadcastDate</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {4684FE97-8765-4842-9C13-F006447B178C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.ProgramDescription">
            <summary>
            <para>Name:     System.RecordedTV.ProgramDescription -- PKEY_RecordedTV_ProgramDescription</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 3</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.RecordingTime">
            <summary>
            <para>Name:     System.RecordedTV.RecordingTime -- PKEY_RecordedTV_RecordingTime</para>
            <para>Description: </para>
            <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
            <para>FormatID: {A5477F61-7A82-4ECA-9DDE-98B69B2479B3}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.StationCallSign">
             <summary>
             <para>Name:     System.RecordedTV.StationCallSign -- PKEY_RecordedTV_StationCallSign</para>
             <para>Description: Example: "TOONP"
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {6D748DE2-8D38-4CC3-AC60-F009B057C557}, 5</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemRecordedTV.StationName">
            <summary>
            <para>Name:     System.RecordedTV.StationName -- PKEY_RecordedTV_StationName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {1B5439E7-EBA1-4AF8-BDD7-7AF1D4549493}, 100</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch">
            <summary>
            System.Search Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.AutoSummary">
             <summary>
             <para>Name:     System.Search.AutoSummary -- PKEY_Search_AutoSummary</para>
             <para>Description: General Summary of the document.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {560C36C0-503A-11CF-BAA1-00004C752A9A}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.ContainerHash">
             <summary>
             <para>Name:     System.Search.ContainerHash -- PKEY_Search_ContainerHash</para>
             <para>Description: Hash code used to identify attachments to be deleted based on a common container url
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {BCEEE283-35DF-4D53-826A-F36A3EEFC6BE}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.Contents">
             <summary>
             <para>Name:     System.Search.Contents -- PKEY_Search_Contents</para>
             <para>Description: The contents of the item. This property is for query restrictions only; it cannot be retrieved in a 
            query result. The Indexing Service friendly name is 'contents'.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Storage) {B725F130-47EF-101A-A5F1-02608C9EEBAC}, 19 (PID_STG_CONTENTS)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.EntryID">
             <summary>
             <para>Name:     System.Search.EntryID -- PKEY_Search_EntryID</para>
             <para>Description: The entry ID for an item within a given catalog in the Windows Search Index.
            This value may be recycled, and therefore is not considered unique over time.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_Query) {49691C90-7E17-101A-A91C-08002B2ECDA9}, 5 (PROPID_QUERY_WORKID)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.ExtendedProperties">
            <summary>
            <para>Name:     System.Search.ExtendedProperties -- PKEY_Search_ExtendedProperties</para>
            <para>Description: </para>
            <para>Type:     Blob -- VT_BLOB</para>
            <para>FormatID: {7B03B546-FA4F-4A52-A2FE-03D5311E5865}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.GatherTime">
             <summary>
             <para>Name:     System.Search.GatherTime -- PKEY_Search_GatherTime</para>
             <para>Description: The Datetime that the Windows Search Gatherer process last pushed properties of this document to the Windows Search Gatherer Plugins.
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {0B63E350-9CCC-11D0-BCDB-00805FCCCE04}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.HitCount">
             <summary>
             <para>Name:     System.Search.HitCount -- PKEY_Search_HitCount</para>
             <para>Description: When using CONTAINS over the Windows Search Index, this is the number of matches of the term.
            If there are multiple CONTAINS, an AND computes the min number of hits and an OR the max number of hits.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_Query) {49691C90-7E17-101A-A91C-08002B2ECDA9}, 4 (PROPID_QUERY_HITCOUNT)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.IsClosedDirectory">
             <summary>
             <para>Name:     System.Search.IsClosedDirectory -- PKEY_Search_IsClosedDirectory</para>
             <para>Description: If this property is emitted with a value of TRUE, then it indicates that this URL's last modified time applies to all of it's children, and if this URL is deleted then all of it's children are deleted as well.  For example, this would be emitted as TRUE when emitting the URL of an email so that all attachments are tied to the last modified time of that email.
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {0B63E343-9CCC-11D0-BCDB-00805FCCCE04}, 23</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.IsFullyContained">
             <summary>
             <para>Name:     System.Search.IsFullyContained -- PKEY_Search_IsFullyContained</para>
             <para>Description: Any child URL of a URL which has System.Search.IsClosedDirectory=TRUE must emit System.Search.IsFullyContained=TRUE.  This ensures that the URL is not deleted at the end of a crawl because it hasn't been visited (which is the normal mechanism for detecting deletes).  For example an email attachment would emit this property
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: {0B63E343-9CCC-11D0-BCDB-00805FCCCE04}, 24</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.QueryFocusedSummary">
             <summary>
             <para>Name:     System.Search.QueryFocusedSummary -- PKEY_Search_QueryFocusedSummary</para>
             <para>Description: Query Focused Summary of the document.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {560C36C0-503A-11CF-BAA1-00004C752A9A}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.QueryFocusedSummaryWithFallback">
             <summary>
             <para>Name:     System.Search.QueryFocusedSummaryWithFallback -- PKEY_Search_QueryFocusedSummaryWithFallback</para>
             <para>Description: Query Focused Summary of the document, if none is available it returns the AutoSummary.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {560C36C0-503A-11CF-BAA1-00004C752A9A}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.Rank">
             <summary>
             <para>Name:     System.Search.Rank -- PKEY_Search_Rank</para>
             <para>Description: Relevance rank of row. Ranges from 0-1000. Larger numbers = better matches.  Query-time only.
            </para>
             <para>Type:     Int32 -- VT_I4</para>
             <para>FormatID: (FMTID_Query) {49691C90-7E17-101A-A91C-08002B2ECDA9}, 3 (PROPID_QUERY_RANK)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.Store">
             <summary>
             <para>Name:     System.Search.Store -- PKEY_Search_Store</para>
             <para>Description: The identifier for the protocol handler that produced this item. (E.g. MAPI, CSC, FILE etc.)
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {A06992B3-8CAF-4ED7-A547-B259E32AC9FC}, 100</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.UrlToIndex">
             <summary>
             <para>Name:     System.Search.UrlToIndex -- PKEY_Search_UrlToIndex</para>
             <para>Description: This property should be emitted by a container IFilter for each child URL within the container.  The children will eventually be crawled by the indexer if they are within scope.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {0B63E343-9CCC-11D0-BCDB-00805FCCCE04}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSearch.UrlToIndexWithModificationTime">
             <summary>
             <para>Name:     System.Search.UrlToIndexWithModificationTime -- PKEY_Search_UrlToIndexWithModificationTime</para>
             <para>Description: This property is the same as System.Search.UrlToIndex except that it includes the time the URL was last modified.  This is an optimization for the indexer as it doesn't have to call back into the protocol handler to ask for this information to determine if the content needs to be indexed again.  The property is a vector with two elements, a VT_LPWSTR with the URL and a VT_FILETIME for the last modified time.
            </para>
             <para>Type:     Multivalue Any -- VT_VECTOR | VT_NULL  (For variants: VT_ARRAY | VT_NULL)</para>
             <para>FormatID: {0B63E343-9CCC-11D0-BCDB-00805FCCCE04}, 12</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemShell">
            <summary>
            System.Shell Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemShell.OmitFromView">
             <summary>
             <para>Name:     System.Shell.OmitFromView -- PKEY_Shell_OmitFromView</para>
             <para>Description: Set this to a string value of 'True' to omit this item from shell views
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {DE35258C-C695-4CBC-B982-38B0AD24CED0}, 2</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemShell.SFGAOFlagsStrings">
             <summary>
             <para>Name:     System.Shell.SFGAOFlagsStrings -- PKEY_Shell_SFGAOFlagsStrings</para>
             <para>Description: Expresses the SFGAO flags as string values and is used as a query optimization.
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: {D6942081-D53B-443D-AD47-5E059D9CD27A}, 2</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSoftware">
            <summary>
            System.Software Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSoftware.DateLastUsed">
             <summary>
             <para>Name:     System.Software.DateLastUsed -- PKEY_Software_DateLastUsed</para>
             <para>Description: 
            </para>
             <para>Type:     DateTime -- VT_FILETIME  (For variants: VT_DATE)</para>
             <para>FormatID: {841E4F90-FF59-4D16-8947-E81BBFFAB36D}, 16</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSoftware.ProductName">
             <summary>
             <para>Name:     System.Software.ProductName -- PKEY_Software_ProductName</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (PSFMTID_VERSION) {0CEF7D53-FA64-11D1-A203-0000F81FEDEE}, 7</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync">
            <summary>
            System.Sync Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.Comments">
            <summary>
            <para>Name:     System.Sync.Comments -- PKEY_Sync_Comments</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 13</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.ConflictDescription">
            <summary>
            <para>Name:     System.Sync.ConflictDescription -- PKEY_Sync_ConflictDescription</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CE50C159-2FB8-41FD-BE68-D3E042E274BC}, 4</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.ConflictFirstLocation">
            <summary>
            <para>Name:     System.Sync.ConflictFirstLocation -- PKEY_Sync_ConflictFirstLocation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CE50C159-2FB8-41FD-BE68-D3E042E274BC}, 6</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.ConflictSecondLocation">
            <summary>
            <para>Name:     System.Sync.ConflictSecondLocation -- PKEY_Sync_ConflictSecondLocation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CE50C159-2FB8-41FD-BE68-D3E042E274BC}, 7</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.HandlerCollectionID">
            <summary>
            <para>Name:     System.Sync.HandlerCollectionID -- PKEY_Sync_HandlerCollectionID</para>
            <para>Description: </para>
            <para>Type:     Guid -- VT_CLSID</para>
            <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 2</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.HandlerID">
            <summary>
            <para>Name:     System.Sync.HandlerID -- PKEY_Sync_HandlerID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 3</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.HandlerName">
            <summary>
            <para>Name:     System.Sync.HandlerName -- PKEY_Sync_HandlerName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CE50C159-2FB8-41FD-BE68-D3E042E274BC}, 2</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.HandlerType">
             <summary>
             <para>Name:     System.Sync.HandlerType -- PKEY_Sync_HandlerType</para>
             <para>Description: 
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 8</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.HandlerTypeLabel">
             <summary>
             <para>Name:     System.Sync.HandlerTypeLabel -- PKEY_Sync_HandlerTypeLabel</para>
             <para>Description: 
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 9</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.ItemID">
            <summary>
            <para>Name:     System.Sync.ItemID -- PKEY_Sync_ItemID</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 6</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.ItemName">
            <summary>
            <para>Name:     System.Sync.ItemName -- PKEY_Sync_ItemName</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {CE50C159-2FB8-41FD-BE68-D3E042E274BC}, 3</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.ProgressPercentage">
             <summary>
             <para>Name:     System.Sync.ProgressPercentage -- PKEY_Sync_ProgressPercentage</para>
             <para>Description: An integer value between 0 and 100 representing the percentage completed.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 23</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.State">
             <summary>
             <para>Name:     System.Sync.State -- PKEY_Sync_State</para>
             <para>Description: Sync state.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 24</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemSync.Status">
            <summary>
            <para>Name:     System.Sync.Status -- PKEY_Sync_Status</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {7BD5533E-AF15-44DB-B8C8-BD6624E1D032}, 10</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemTask">
            <summary>
            System.Task Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemTask.BillingInformation">
            <summary>
            <para>Name:     System.Task.BillingInformation -- PKEY_Task_BillingInformation</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {D37D52C6-261C-4303-82B3-08B926AC6F12}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemTask.CompletionStatus">
            <summary>
            <para>Name:     System.Task.CompletionStatus -- PKEY_Task_CompletionStatus</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {084D8A0A-E6D5-40DE-BF1F-C8820E7C877C}, 100</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemTask.Owner">
            <summary>
            <para>Name:     System.Task.Owner -- PKEY_Task_Owner</para>
            <para>Description: </para>
            <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
            <para>FormatID: {08C7CC5F-60F2-4494-AD75-55E3E0B5ADD0}, 100</para>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo">
            <summary>
            System.Video Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.Compression">
             <summary>
             <para>Name:     System.Video.Compression -- PKEY_Video_Compression</para>
             <para>Description: Indicates the level of compression for the video stream.  "Compression".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 10 (PIDVSI_COMPRESSION)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.Director">
             <summary>
             <para>Name:     System.Video.Director -- PKEY_Video_Director</para>
             <para>Description: 
            </para>
             <para>Type:     Multivalue String -- VT_VECTOR | VT_LPWSTR  (For variants: VT_ARRAY | VT_BSTR)</para>
             <para>FormatID: (PSGUID_MEDIAFILESUMMARYINFORMATION) {64440492-4C8B-11D1-8B70-080036B11A03}, 20 (PIDMSI_DIRECTOR)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.EncodingBitrate">
             <summary>
             <para>Name:     System.Video.EncodingBitrate -- PKEY_Video_EncodingBitrate</para>
             <para>Description: Indicates the data rate in "bits per second" for the video stream. "DataRate".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 8 (PIDVSI_DATA_RATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.FourCC">
             <summary>
             <para>Name:     System.Video.FourCC -- PKEY_Video_FourCC</para>
             <para>Description: Indicates the 4CC for the video stream.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 44</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.FrameHeight">
             <summary>
             <para>Name:     System.Video.FrameHeight -- PKEY_Video_FrameHeight</para>
             <para>Description: Indicates the frame height for the video stream.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 4</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.FrameRate">
             <summary>
             <para>Name:     System.Video.FrameRate -- PKEY_Video_FrameRate</para>
             <para>Description: Indicates the frame rate in "frames per millisecond" for the video stream.  "FrameRate".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 6 (PIDVSI_FRAME_RATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.FrameWidth">
             <summary>
             <para>Name:     System.Video.FrameWidth -- PKEY_Video_FrameWidth</para>
             <para>Description: Indicates the frame width for the video stream.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 3</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.HorizontalAspectRatio">
             <summary>
             <para>Name:     System.Video.HorizontalAspectRatio -- PKEY_Video_HorizontalAspectRatio</para>
             <para>Description: Indicates the horizontal portion of the aspect ratio. The X portion of XX:YY,
            like 16:9.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 42</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.SampleSize">
             <summary>
             <para>Name:     System.Video.SampleSize -- PKEY_Video_SampleSize</para>
             <para>Description: Indicates the sample size in bits for the video stream.  "SampleSize".
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 9 (PIDVSI_SAMPLE_SIZE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.StreamName">
             <summary>
             <para>Name:     System.Video.StreamName -- PKEY_Video_StreamName</para>
             <para>Description: Indicates the name for the video stream. "StreamName".
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 2 (PIDVSI_STREAM_NAME)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.StreamNumber">
             <summary>
             <para>Name:     System.Video.StreamNumber -- PKEY_Video_StreamNumber</para>
             <para>Description: "Stream Number".
            </para>
             <para>Type:     UInt16 -- VT_UI2</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 11 (PIDVSI_STREAM_NUMBER)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.TotalBitrate">
             <summary>
             <para>Name:     System.Video.TotalBitrate -- PKEY_Video_TotalBitrate</para>
             <para>Description: Indicates the total data rate in "bits per second" for all video and audio streams.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 43 (PIDVSI_TOTAL_BITRATE)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.TranscodedForSync">
            <summary>
            <para>Name:     System.Video.TranscodedForSync -- PKEY_Video_TranscodedForSync</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 46</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVideo.VerticalAspectRatio">
             <summary>
             <para>Name:     System.Video.VerticalAspectRatio -- PKEY_Video_VerticalAspectRatio</para>
             <para>Description: Indicates the vertical portion of the aspect ratio. The Y portion of 
            XX:YY, like 16:9.
            </para>
             <para>Type:     UInt32 -- VT_UI4</para>
             <para>FormatID: (FMTID_VideoSummaryInformation) {64440491-4C8B-11D1-8B70-080036B11A03}, 45</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVolume">
            <summary>
            System.Volume Properties
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVolume.FileSystem">
             <summary>
             <para>Name:     System.Volume.FileSystem -- PKEY_Volume_FileSystem</para>
             <para>Description: Indicates the filesystem of the volume.
            </para>
             <para>Type:     String -- VT_LPWSTR  (For variants: VT_BSTR)</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 4 (PID_VOLUME_FILESYSTEM)  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVolume.IsMappedDrive">
            <summary>
            <para>Name:     System.Volume.IsMappedDrive -- PKEY_Volume_IsMappedDrive</para>
            <para>Description: </para>
            <para>Type:     Boolean -- VT_BOOL</para>
            <para>FormatID: {149C0B69-2C2D-48FC-808F-D318D78C4636}, 2</para>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellProperties.PropertySystemVolume.IsRoot">
             <summary>
             <para>Name:     System.Volume.IsRoot -- PKEY_Volume_IsRoot</para>
             <para>Description: 
            </para>
             <para>Type:     Boolean -- VT_BOOL</para>
             <para>FormatID: (FMTID_Volume) {9B174B35-40FF-11D2-A27E-00C04FC30871}, 10  (Filesystem Volume Properties)</para>
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat">
            <summary>
            Delineates the format of a property string.
            </summary>
            <remarks>
            Typically use one, or a bitwise combination of 
            these flags, to specify the format. Some flags are mutually exclusive, 
            so combinations like <c>ShortTime | LongTime | HideTime</c> are not allowed.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.Default">
            <summary>
            The format settings specified in the property's .propdesc file.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.PrefixName">
            <summary>
            The value preceded with the property's display name.
            </summary>
            <remarks>
            This flag is ignored when the <c>hideLabelPrefix</c> attribute of the <c>labelInfo</c> element 
            in the property's .propinfo file is set to true.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.FileName">
            <summary>
            The string treated as a file name.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.AlwaysKB">
            <summary>
            The sizes displayed in kilobytes (KB), regardless of size. 
            </summary>
            <remarks>
            This flag applies to properties of <c>Integer</c> types and aligns the values in the column. 
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.RightToLeft">
            <summary>
            Reserved.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.ShortTime">
            <summary>
            The time displayed as 'hh:mm am/pm'.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.LongTime">
            <summary>
            The time displayed as 'hh:mm:ss am/pm'.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.HideTime">
            <summary>
            The time portion of date/time hidden.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.ShortDate">
            <summary>
            The date displayed as 'MM/DD/YY'. For example, '3/21/04'.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.LongDate">
            <summary>
            The date displayed as 'DayOfWeek Month day, year'. 
            For example, 'Monday, March 21, 2004'.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.HideDate">
            <summary>
            The date portion of date/time hidden.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.RelativeDate">
            <summary>
            The friendly date descriptions, such as "Yesterday".
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.UseEditInvitation">
            <summary>
            The text displayed in a text box as a cue for the user, such as 'Enter your name'.
            </summary>
            <remarks>
            The invitation text is returned if formatting failed or the value was empty. 
            Invitation text is text displayed in a text box as a cue for the user, 
            Formatting can fail if the data entered 
            is not of an expected type, such as putting alpha characters in 
            a phone number field.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.ReadOnly">
            <summary>
            This flag requires UseEditInvitation to also be specified. When the 
            formatting flags are ReadOnly | UseEditInvitation and the algorithm 
            would have shown invitation text, a string is returned that indicates 
            the value is "Unknown" instead of the invitation text.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.NoAutoReadingOrder">
            <summary>
            The detection of the reading order is not automatic. Useful when converting 
            to ANSI to omit the Unicode reading order characters.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDescriptionFormat.SmartDateTime">
            <summary>
            Smart display of DateTime values
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDisplayType">
            <summary>
            Specifies the display types for a property.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDisplayType.String">
            <summary>
            The String Display. This is the default if the property doesn't specify a display type.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDisplayType.Number">
            <summary>
            The Number Display.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDisplayType.Boolean">
            <summary>
            The Boolean Display.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDisplayType.DateTime">
            <summary>
            The DateTime Display.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyDisplayType.Enumerated">
            <summary>
            The Enumerated Display.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyAggregationType">
            <summary>
            Property Aggregation Type
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyAggregationType.Default">
            <summary>
            The string "Multiple Values" is displayed.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyAggregationType.First">
            <summary>
            The first value in the selection is displayed.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyAggregationType.Sum">
            <summary>
            The sum of the selected values is displayed. This flag is never returned 
            for data types VT_LPWSTR, VT_BOOL, and VT_FILETIME.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyAggregationType.Average">
            <summary>
            The numerical average of the selected values is displayed. This flag 
            is never returned for data types VT_LPWSTR, VT_BOOL, and VT_FILETIME.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyAggregationType.DateRange">
            <summary>
            The date range of the selected values is displayed. This flag is only 
            returned for values of the VT_FILETIME data type.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyAggregationType.Union">
            <summary>
            A concatenated string of all the values is displayed. The order of 
            individual values in the string is undefined. The concatenated 
            string omits duplicate values; if a value occurs more than once, 
            it only appears a single time in the concatenated string.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyAggregationType.Max">
            <summary>
            The highest of the selected values is displayed.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyAggregationType.Min">
            <summary>
            The lowest of the selected values is displayed.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropEnumType">
            <summary>
            Property Enumeration Types
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropEnumType.DiscreteValue">
            <summary>
            Use DisplayText and either RangeMinValue or RangeSetValue.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropEnumType.RangedValue">
            <summary>
            Use DisplayText and either RangeMinValue or RangeSetValue
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropEnumType.DefaultValue">
            <summary>
            Use DisplayText
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropEnumType.EndRange">
            <summary>
            Use Value or RangeMinValue
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState">
            <summary>
            Describes how a property should be treated for display purposes.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.DefaultValue">
            <summary>
            Default value
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.StringType">
            <summary>
            The value is displayed as a string.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.IntegerType">
            <summary>
            The value is displayed as an integer.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.DateType">
            <summary>
            The value is displayed as a date/time.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.TypeMask">
            <summary>
            A mask for display type values StringType, IntegerType, and DateType.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.OnByDefault">
            <summary>
            The column should be on by default in Details view.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.Slow">
            <summary>
            Will be slow to compute. Perform on a background thread.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.Extended">
            <summary>
            Provided by a handler, not the folder.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.SecondaryUI">
            <summary>
            Not displayed in the context menu, but is listed in the More... dialog.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.Hidden">
            <summary>
            Not displayed in the user interface (UI).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.PerferVarCmp">
            <summary>
            VarCmp produces same result as IShellFolder::CompareIDs.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.PreferFormatForDisplay">
            <summary>
            PSFormatForDisplay produces same result as IShellFolder::CompareIDs.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.NoSortByFolders">
            <summary>
            Do not sort folders separately.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.ViewOnly">
            <summary>
            Only displayed in the UI.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.BatchRead">
            <summary>
            Marks columns with values that should be read in a batch.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.NoGroupBy">
            <summary>
            Grouping is disabled for this column.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.FixedWidth">
            <summary>
            Can't resize the column.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.NoDPIScale">
            <summary>
            The width is the same in all dots per inch (dpi)s.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.FixedRatio">
            <summary>
            Fixed width and height ratio.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyColumnState.DisplayMask">
            <summary>
            Filters out new display flags.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionType">
            <summary>
            Specifies the condition type to use when displaying the property in the query builder user interface (UI).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionType.None">
            <summary>
            The default condition type.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionType.String">
            <summary>
            The string type.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionType.Size">
            <summary>
            The size type.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionType.DateTime">
            <summary>
            The date/time type.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionType.Boolean">
            <summary>
            The Boolean type.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionType.Number">
            <summary>
            The number type.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation">
            <summary>
            Provides a set of flags to be used with IConditionFactory, 
            ICondition, and IConditionGenerator to indicate the operation.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.Implicit">
            <summary>
            The implicit comparison between the value of the property and the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.Equal">
            <summary>
            The value of the property and the value of the constant must be equal.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.NotEqual">
            <summary>
            The value of the property and the value of the constant must not be equal.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.LessThan">
            <summary>
            The value of the property must be less than the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.GreaterThan">
            <summary>
            The value of the property must be greater than the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.LessThanOrEqual">
            <summary>
            The value of the property must be less than or equal to the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.GreaterThanOrEqual">
            <summary>
            The value of the property must be greater than or equal to the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.ValueStartsWith">
            <summary>
            The value of the property must begin with the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.ValueEndsWith">
            <summary>
            The value of the property must end with the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.ValueContains">
            <summary>
            The value of the property must contain the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.ValueNotContains">
            <summary>
            The value of the property must not contain the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.DOSWildCards">
            <summary>
            The value of the property must match the value of the constant, where '?' matches any single character and '*' matches any sequence of characters.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.WordEqual">
            <summary>
            The value of the property must contain a word that is the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.WordStartsWith">
            <summary>
            The value of the property must contain a word that begins with the value of the constant.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyConditionOperation.ApplicationSpecific">
            <summary>
            The application is free to interpret this in any suitable way.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyGroupingRange">
            <summary>
            Specifies the property description grouping ranges.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyGroupingRange.Discrete">
            <summary>
            The individual values.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyGroupingRange.Alphanumeric">
            <summary>
            The static alphanumeric ranges.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyGroupingRange.Size">
            <summary>
            The static size ranges.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyGroupingRange.Dymamic">
            <summary>
            The dynamically-created ranges.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyGroupingRange.Date">
            <summary>
            The month and year groups.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyGroupingRange.Percent">
            <summary>
            The percent groups.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyGroupingRange.Enumerated">
            <summary>
            The enumerated groups.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertySortDescription">
            <summary>
            Describes the particular wordings of sort offerings.
            </summary>
            <remarks>
            Note that the strings shown are English versions only; 
            localized strings are used for other locales.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertySortDescription.General">
            <summary>
            The default ascending or descending property sort, "Sort going up", "Sort going down".
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertySortDescription.AToZ">
            <summary>
            The alphabetical sort, "A on top", "Z on top".
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertySortDescription.LowestToHighest">
            <summary>
            The numerical sort, "Lowest on top", "Highest on top".
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertySortDescription.SmallestToBiggest">
            <summary>
            The size sort, "Smallest on top", "Largest on top".
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertySortDescription.OldestToNewest">
            <summary>
            The chronological sort, "Oldest on top", "Newest on top".
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags">
            <summary>
            Describes the attributes of the <c>typeInfo</c> element in the property's <c>.propdesc</c> file.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.Default">
            <summary>
            The property uses the default values for all attributes.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.MultipleValues">
            <summary>
            The property can have multiple values.   
            </summary>
            <remarks>
            These values are stored as a VT_VECTOR in the PROPVARIANT structure.
            This value is set by the multipleValues attribute of the typeInfo element in the property's .propdesc file.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.IsInnate">
            <summary>
            This property cannot be written to. 
            </summary>
            <remarks>
            This value is set by the isInnate attribute of the typeInfo element in the property's .propdesc file.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.IsGroup">
            <summary>
            The property is a group heading. 
            </summary>
            <remarks>
            This value is set by the isGroup attribute of the typeInfo element in the property's .propdesc file.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.CanGroupBy">
            <summary>
            The user can group by this property. 
            </summary>
            <remarks>
            This value is set by the canGroupBy attribute of the typeInfo element in the property's .propdesc file.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.CanStackBy">
            <summary>
            The user can stack by this property. 
            </summary>
            <remarks>
            This value is set by the canStackBy attribute of the typeInfo element in the property's .propdesc file.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.IsTreeProperty">
            <summary>
            This property contains a hierarchy. 
            </summary>
            <remarks>
            This value is set by the isTreeProperty attribute of the typeInfo element in the property's .propdesc file.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.IncludeInFullTextQuery">
            <summary>
            Include this property in any full text query that is performed. 
            </summary>
            <remarks>
            This value is set by the includeInFullTextQuery attribute of the typeInfo element in the property's .propdesc file.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.IsViewable">
            <summary>
            This property is meant to be viewed by the user.  
            </summary>
            <remarks>
            This influences whether the property shows up in the "Choose Columns" dialog, for example.
            This value is set by the isViewable attribute of the typeInfo element in the property's .propdesc file.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.IsQueryable">
            <summary>
            This property is included in the list of properties that can be queried.   
            </summary>
            <remarks>
            A queryable property must also be viewable.
            This influences whether the property shows up in the query builder UI.
            This value is set by the isQueryable attribute of the typeInfo element in the property's .propdesc file.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.CanBePurged">
            <summary>
            Used with an innate property (that is, a value calculated from other property values) to indicate that it can be deleted.  
            </summary>
            <remarks>
            Windows Vista with Service Pack 1 (SP1) and later.
            This value is used by the Remove Properties user interface (UI) to determine whether to display a check box next to an property that allows that property to be selected for removal.
            Note that a property that is not innate can always be purged regardless of the presence or absence of this flag.
            </remarks>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.IsSystemProperty">
            <summary>
            This property is owned by the system.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyTypeFlags.MaskAll">
            <summary>
            A mask used to retrieve all flags.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags">
            <summary>
            Associates property names with property description list strings.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.Default">
            <summary>
            The property is shown by default.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.CenterAlign">
            <summary>
            The property is centered.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.RightAlign">
            <summary>
            The property is right aligned.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.BeginNewGroup">
            <summary>
            The property is shown as the beginning of the next collection of properties in the view.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.FillArea">
            <summary>
            The remainder of the view area is filled with the content of this property.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.SortDescending">
            <summary>
            The property is reverse sorted if it is a property in a list of sorted properties.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.ShowOnlyIfPresent">
            <summary>
            The property is only shown if it is present.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.ShowByDefault">
            <summary>
            The property is shown by default in a view (where applicable).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.ShowInPrimaryList">
            <summary>
            The property is shown by default in primary column selection user interface (UI).
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.ShowInSecondaryList">
            <summary>
            The property is shown by default in secondary column selection UI.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.HideLabel">
            <summary>
            The label is hidden if the view is normally inclined to show the label.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.Hidden">
            <summary>
            The property is not displayed as a column in the UI.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.CanWrap">
            <summary>
            The property is wrapped to the next row.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyViewFlags.MaskAll">
            <summary>
            A mask used to retrieve all flags.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenu">
            <summary>
            Defines the menu controls for the Common File Dialog.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenu.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenu.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified text.
            </summary>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenu.#ctor(System.String,System.String)">
            <summary>
            Creates a new instance of this class with the specified name and text.
            </summary>
            <param name="name">The name of this control.</param>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenu.Initialize">
            <summary>
            Initializes the item collection for this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenu.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach the Menu control to the dialog object.
            </summary>
            <param name="dialog">the target dialog</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenu.Items">
            <summary>
            Gets the collection of CommonFileDialogMenuItem objects.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenuItem">
            <summary>
            Creates the CommonFileDialogMenuItem items for the Common File Dialog.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenuItem.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenuItem.#ctor(System.String)">
            <summary>
            Creates a new instance of this class with the specified text.
            </summary>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenuItem.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach this control to the dialog object
            </summary>
            <param name="dialog">Target dialog</param>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogMenuItem.Click">
            <summary>
            Occurs when a user clicks a menu item.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFolderChangeEventArgs">
            <summary>
            Creates the event data associated with <see cref="E:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialog.FolderChanging"/> event.
            </summary>
            
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFolderChangeEventArgs.#ctor(System.String)">
            <summary>
            Creates a new instance of this class.
            </summary>
            <param name="folder">The name of the folder.</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFolderChangeEventArgs.Folder">
            <summary>
            Gets or sets the name of the folder.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink">
            <summary>
            Implements a CommandLink button that can be used in WPF user interfaces.
            </summary>
            <summary>
            CommandLink
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink.#ctor">
            <summary>
            Creates a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink.InitializeComponent">
            <summary>
            InitializeComponent
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink.Command">
            <summary>
            Routed UI command to use for this button
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink.Click">
            <summary>
            Occurs when the control is clicked.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink.Link">
            <summary>
            Specifies the main instruction text
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink.Note">
            <summary>
            Specifies the supporting note text
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink.Icon">
            <summary>
            Icon to set for the command link button
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink.IsCheck">
            <summary>
            Indicates if the button is in a checked state
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink.PropertyChanged">
            <summary>
            Occurs when a property value changes.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Controls.WindowsPresentationFoundation.CommandLink.IsPlatformSupported">
            <summary>
            Indicates whether this feature is supported on the current platform.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail">
            <summary>
            Represents a thumbnail or an icon for a ShellObject.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.shellItemNative">
            <summary>
            Native shellItem
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.currentSize">
            <summary>
            Internal member to keep track of the current size
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.#ctor(Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Internal constructor that takes in a parent ShellObject.
            </summary>
            <param name="shellObject"></param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.#ctor">
            <summary>
            No public default constructor. User should not be able to create a ShellThumbnail,
            only retrive it from an existing ShellFolder
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.CurrentSize">
            <summary>
            Gets or sets the default size of the thumbnail or icon. The default is 32x32 pixels for icons and 
            256x256 pixels for thumbnails.
            </summary>
            <remarks>If the size specified is larger than the maximum size of 1024x1024 for thumbnails and 256x256 for icons,
            an <see cref="T:System.ArgumentOutOfRangeException"/> is thrown.
            </remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.Bitmap">
            <summary>
            Gets the thumbnail or icon image in <see cref="T:System.Drawing.Bitmap"/> format.
            Null is returned if the ShellObject does not have a thumbnail or icon image.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.BitmapSource">
            <summary>
            Gets the thumbnail or icon image in <see cref="T:System.Windows.Media.Imaging.BitmapSource"/> format. 
            Null is returned if the ShellObject does not have a thumbnail or icon image.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.Icon">
            <summary>
            Gets the thumbnail or icon image in <see cref="T:System.Drawing.Icon"/> format. 
            Null is returned if the ShellObject does not have a thumbnail or icon image.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.SmallBitmap">
            <summary>
            Gets the thumbnail or icon in small size and <see cref="T:System.Drawing.Bitmap"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.SmallBitmapSource">
            <summary>
            Gets the thumbnail or icon in small size and <see cref="T:System.Windows.Media.Imaging.BitmapSource"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.SmallIcon">
            <summary>
            Gets the thumbnail or icon in small size and <see cref="T:System.Drawing.Icon"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.MediumBitmap">
            <summary>
            Gets the thumbnail or icon in Medium size and <see cref="T:System.Drawing.Bitmap"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.MediumBitmapSource">
            <summary>
            Gets the thumbnail or icon in medium size and <see cref="T:System.Windows.Media.Imaging.BitmapSource"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.MediumIcon">
            <summary>
            Gets the thumbnail or icon in Medium size and <see cref="T:System.Drawing.Icon"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.LargeBitmap">
            <summary>
            Gets the thumbnail or icon in large size and <see cref="T:System.Drawing.Bitmap"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.LargeBitmapSource">
            <summary>
            Gets the thumbnail or icon in large size and <see cref="T:System.Windows.Media.Imaging.BitmapSource"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.LargeIcon">
            <summary>
            Gets the thumbnail or icon in Large size and <see cref="T:System.Drawing.Icon"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.ExtraLargeBitmap">
            <summary>
            Gets the thumbnail or icon in extra large size and <see cref="T:System.Drawing.Bitmap"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.ExtraLargeBitmapSource">
            <summary>
            Gets the thumbnail or icon in Extra Large size and <see cref="T:System.Windows.Media.Imaging.BitmapSource"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.ExtraLargeIcon">
            <summary>
            Gets the thumbnail or icon in Extra Large size and <see cref="T:System.Drawing.Icon"/> format.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.RetrievalOption">
            <summary>
            Gets or sets a value that determines if the current retrieval option is cache or extract, cache only, or from memory only.
            The default is cache or extract.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.FormatOption">
            <summary>
            Gets or sets a value that determines if the current format option is thumbnail or icon, thumbnail only, or icon only.
            The default is thumbnail or icon.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellThumbnail.AllowBiggerSize">
            <summary>
            Gets or sets a value that determines if the user can manually stretch the returned image.
            The default value is false.
            </summary>
            <remarks>
            For example, if the caller passes in 80x80 a 96x96 thumbnail could be returned. 
            This could be used as a performance optimization if the caller will need to stretch 
            the image themselves anyway. Note that the Shell implementation performs a GDI stretch blit. 
            If the caller wants a higher quality image stretch, they should pass this flag and do it themselves.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellFolderItems.MoveNext">
            <summary>
            
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellFolderItems.Reset">
            <summary>
            
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.UserRemovedJumpListItemsEventArgs">
            <summary>
            Event arguments for when the user is notified of items
            that have been removed from the taskbar destination list
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.UserRemovedJumpListItemsEventArgs.RemovedItems">
            <summary>
            The collection of removed items based on path.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Taskbar.THUMBBUTTON.THBN_CLICKED">
            <summary>
            WPARAM value for a THUMBBUTTON being clicked.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarNativeMethods.SetWindowAppId(System.IntPtr,System.String)">
            <summary>
            Sets the window's application id by its window handle.
            </summary>
            <param name="hwnd">The window handle.</param>
            <param name="appId">The application id.</param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailBitmapRequestedEventArgs">
            <summary>
            Event args for the TabbedThumbnailBitmapRequested event. The event allows applications to
            provide a bitmap for the tabbed thumbnail's preview and peek. The application should also
            set the Handled property if a custom bitmap is provided.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailBitmapRequestedEventArgs.#ctor(System.IntPtr,Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail)">
            <summary>
            Creates a Event Args for a TabbedThumbnailBitmapRequested event.
            </summary>
            <param name="windowHandle">Window handle for the control/window related to the event</param>
            <param name="preview">TabbedThumbnail related to this event</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailBitmapRequestedEventArgs.#ctor(System.Windows.UIElement,Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail)">
            <summary>
            Creates a Event Args for a TabbedThumbnailBitmapRequested event.
            </summary>
            <param name="windowsControl">WPF Control (UIElement) related to the event</param>
            <param name="preview">TabbedThumbnail related to this event</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailBitmapRequestedEventArgs.SetImage(System.Drawing.Bitmap)">
            <summary>
            Override the thumbnail and peek bitmap. 
            By providing this bitmap manually, Thumbnail Window manager will provide the 
            Desktop Window Manager (DWM) this bitmap instead of rendering one automatically.
            Use this property to update the bitmap whenever the control is updated and the user
            needs to be shown a new thumbnail on the taskbar preview (or aero peek).
            </summary>
            <param name="bitmap">The bitmap to be displayed.</param>
            <remarks>
            If the bitmap doesn't have the right dimensions, the DWM may scale it or not 
            render certain areas as appropriate - it is the user's responsibility
            to render a bitmap with the proper dimensions.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailBitmapRequestedEventArgs.SetImage(System.Windows.Media.Imaging.BitmapSource)">
            <summary>
            Override the thumbnail and peek bitmap. 
            By providing this bitmap manually, Thumbnail Window manager will provide the 
            Desktop Window Manager (DWM) this bitmap instead of rendering one automatically.
            Use this property to update the bitmap whenever the control is updated and the user
            needs to be shown a new thumbnail on the taskbar preview (or aero peek).
            </summary>
            <param name="bitmapSource">The bitmap to be displayed.</param>
            <remarks>
            If the bitmap doesn't have the right dimensions, the DWM may scale it or not 
            render certain areas as appropriate - it is the user's responsibility
            to render a bitmap with the proper dimensions.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailBitmapRequestedEventArgs.SetImage(System.IntPtr)">
            <summary>
            Override the thumbnail and peek bitmap. 
            By providing this bitmap manually, Thumbnail Window manager will provide the 
            Desktop Window Manager (DWM) this bitmap instead of rendering one automatically.
            Use this property to update the bitmap whenever the control is updated and the user
            needs to be shown a new thumbnail on the taskbar preview (or aero peek).
            </summary>
            <param name="hBitmap">The bitmap to be displayed.</param>
            <remarks>
            If the bitmap doesn't have the right dimensions, the DWM may scale it or not 
            render certain areas as appropriate - it is the user's responsibility
            to render a bitmap with the proper dimensions.
            </remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailBitmapRequestedEventArgs.Handled">
            <summary>
            Gets or sets a value indicating whether the TabbedThumbnailBitmapRequested event was handled.
            Set this property if the SetImage method is called with a custom bitmap for the thumbnail/peek.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.StockIcon">
            <summary>
            Represents a standard system icon.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.StockIcon.#ctor(Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier)">
            <summary>
            Creates a new StockIcon instance with the specified identifer, default size 
            and no link overlay or selected states.
            </summary>
            <param name="id">A value that identifies the icon represented by this instance.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.StockIcon.#ctor(Microsoft.WindowsAPICodePack.Shell.StockIconIdentifier,Microsoft.WindowsAPICodePack.Shell.StockIconSizes,System.Boolean,System.Boolean)">
            <summary>
            Creates a new StockIcon instance with the specified identifer and options.
            </summary>
            <param name="id">A value that identifies the icon represented by this instance.</param>
            <param name="size">A value that indicates the size of the stock icon.</param>
            <param name="isLinkOverlay">A bool value that indicates whether the icon has a link overlay.</param>
            <param name="isSelected">A bool value that indicates whether the icon is in a selected state.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.StockIcon.Dispose(System.Boolean)">
            <summary>
            Release the native and managed objects
            </summary>
            <param name="disposing">Indicates that this is being called from Dispose(), rather than the finalizer.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.StockIcon.Dispose">
            <summary>
            Release the native objects
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.StockIcon.Finalize">
            <summary>
            
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcon.Selected">
            <summary>
            Gets or sets a value indicating whether the icon appears selected.
            </summary>
            <value>A <see cref="T:System.Boolean"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcon.LinkOverlay">
            <summary>
            Gets or sets a value that cotrols whether to put a link overlay on the icon.
            </summary>
            <value>A <see cref="T:System.Boolean"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcon.CurrentSize">
            <summary>
            Gets or sets a value that controls the size of the Stock Icon.
            </summary>
            <value>A <see cref="T:Microsoft.WindowsAPICodePack.Shell.StockIconSizes"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcon.Identifier">
            <summary>
            Gets or sets the Stock Icon identifier associated with this icon.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcon.Bitmap">
            <summary>
            Gets the icon image in <see cref="T:System.Drawing.Bitmap"/> format. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcon.BitmapSource">
            <summary>
            Gets the icon image in <see cref="T:System.Windows.Media.Imaging.BitmapSource"/> format. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.StockIcon.Icon">
            <summary>
            Gets the icon image in <see cref="T:System.Drawing.Icon"/> format.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellLink">
            <summary>
            Represents a link to existing FileSystem or Virtual item.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.ShellLink.internalPath">
            <summary>
            Path for this file e.g. c:\Windows\file.txt,
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLink.Path">
            <summary>
            The path for this link
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLink.TargetLocation">
            <summary>
            Gets the location to which this link points to.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLink.TargetShellObject">
            <summary>
            Gets the ShellObject to which this link points to.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellLink.Title">
            <summary>
            Gets or sets the link's title
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyEnumType">
            <summary>
            Defines the enumeration values for a property type.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyEnumType.DisplayText">
            <summary>
            Gets display text from an enumeration information structure. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyEnumType.EnumType">
            <summary>
            Gets an enumeration type from an enumeration information structure. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyEnumType.RangeMinValue">
            <summary>
            Gets a minimum value from an enumeration information structure. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyEnumType.RangeSetValue">
            <summary>
            Gets a set value from an enumeration information structure. 
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyEnumType.RangeValue">
            <summary>
            Gets a value from an enumeration information structure. 
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogSeparator">
            <summary>
            Defines the class for the simplest separator controls.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogSeparator.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach the Separator control to the dialog object
            </summary>
            <param name="dialog">Target dialog</param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription">
            <summary>
            Defines the shell property description information for a property.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.GetSortDescriptionLabel(System.Boolean)">
            <summary>
            Gets the localized display string that describes the current sort order.
            </summary>
            <param name="descending">Indicates the sort order should 
            reference the string "Z on top"; otherwise, the sort order should reference the string "A on top".</param>
            <returns>The sort description for this property.</returns>
            <remarks>The string retrieved by this method is determined by flags set in the 
            <c>sortDescription</c> attribute of the <c>labelInfo</c> element in the property's .propdesc file.</remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.Dispose(System.Boolean)">
            <summary>
            Release the native objects
            </summary>
            <param name="disposing">Indicates that this is being called from Dispose(), rather than the finalizer.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.Dispose">
            <summary>
            Release the native objects
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.Finalize">
            <summary>
            Release the native objects
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.CanonicalName">
            <summary>
            Gets the case-sensitive name of a property as it is known to the system, 
            regardless of its localized name.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.PropertyKey">
            <summary>
            Gets the property key identifying the underlying property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.DisplayName">
            <summary>
            Gets the display name of the property as it is shown in any user interface (UI).
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.EditInvitation">
            <summary>
            Gets the text used in edit controls hosted in various dialog boxes.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.VarEnumType">
            <summary>
            Gets the VarEnum OLE type for this property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.ValueType">
            <summary>
            Gets the .NET system type for a value of this property, or
            null if the value is empty.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.DisplayType">
            <summary>
            Gets the current data type used to display the property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.DefaultColumWidth">
            <summary>
            Gets the default user interface (UI) column width for this property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.AggregationTypes">
            <summary>
            Gets a value that describes how the property values are displayed when 
            multiple items are selected in the user interface (UI).
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.PropertyEnumTypes">
            <summary>
            Gets a list of the possible values for this property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.ColumnState">
            <summary>
            Gets the column state flag, which describes how the property 
            should be treated by interfaces or APIs that use this flag.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.ConditionType">
            <summary>
            Gets the condition type to use when displaying the property in 
            the query builder user interface (UI). This influences the list 
            of predicate conditions (for example, equals, less than, and 
            contains) that are shown for this property.
            </summary>
            <remarks>For more information, see the <c>conditionType</c> attribute 
            of the <c>typeInfo</c> element in the property's .propdesc file.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.ConditionOperation">
            <summary>
            Gets the default condition operation to use 
            when displaying the property in the query builder user 
            interface (UI). This influences the list of predicate conditions 
            (for example, equals, less than, and contains) that are shown 
            for this property.
            </summary>
            <remarks>For more information, see the <c>conditionType</c> attribute of the 
            <c>typeInfo</c> element in the property's .propdesc file.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.GroupingRange">
            <summary>
            Gets the method used when a view is grouped by this property.
            </summary>
            <remarks>The information retrieved by this method comes from 
            the <c>groupingRange</c> attribute of the <c>typeInfo</c> element in the 
            property's .propdesc file.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.SortDescription">
            <summary>
            Gets the current sort description flags for the property, 
            which indicate the particular wordings of sort offerings.
            </summary>
            <remarks>The settings retrieved by this method are set 
            through the <c>sortDescription</c> attribute of the <c>labelInfo</c> 
            element in the property's .propdesc file.</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.TypeFlags">
            <summary>
            Gets a set of flags that describe the uses and capabilities of the property.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.ViewFlags">
            <summary>
            Gets the current set of flags governing the property's view.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.HasSystemDescription">
            <summary>
            Gets a value that determines if the native property description is present on the system.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.ShellPropertyDescription.NativePropertyDescription">
            <summary>
            Get the native property description COM interface
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.CommonFileDialogFilterCollection">
            <summary>
            Provides a strongly typed collection for file dialog filters.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogButton">
            <summary>
            Creates the push button controls used by the Common File Dialog.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogButton.#ctor">
            <summary>
            Initializes a new instance of this class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogButton.#ctor(System.String)">
            <summary>
            Initializes a new instance of this class with the text only.
            </summary>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogButton.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of this class with the specified name and text.
            </summary>
            <param name="name">The name of this control.</param>
            <param name="text">The text to display for this control.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogButton.Attach(Microsoft.WindowsAPICodePack.Dialogs.IFileDialogCustomize)">
            <summary>
            Attach the PushButton control to the dialog object
            </summary>
            <param name="dialog">Target dialog</param>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogButton.Click">
            <summary>
            Occurs when the user clicks the control. This event is routed from COM via the event sink.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellSearchConnector">
            <summary>
            A Serch Connector folder in the Shell Namespace
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellSearchConnector.IsPlatformSupported">
            <summary>
            Indicates whether this feature is supported on the current platform.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.Initialize(System.IntPtr,MS.WindowsAPICodePack.Internal.CoreNativeMethods.RECT@,Microsoft.WindowsAPICodePack.Controls.FOLDERSETTINGS)">
            <summary>
            Prepares the browser to be navigated.
            </summary>
            <param name="hwndParent">A handle to the owner window or control.</param>
            <param name="prc">A pointer to a RECT containing the coordinates of the bounding rectangle 
            the browser will occupy. The coordinates are relative to hwndParent. If this parameter is NULL,
            then method IExplorerBrowser::SetRect should subsequently be called.</param>
            <param name="pfs">A pointer to a FOLDERSETTINGS structure that determines how the folder will be
            displayed in the view. If this parameter is NULL, then method IExplorerBrowser::SetFolderSettings
            should be called, otherwise, the default view settings for the folder are used.</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.Destroy">
            <summary>
            Destroys the browser.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.SetRect(System.IntPtr@,MS.WindowsAPICodePack.Internal.CoreNativeMethods.RECT)">
            <summary>
            Sets the size and position of the view windows created by the browser.
            </summary>
            <param name="phdwp">A pointer to a DeferWindowPos handle. This paramater can be NULL.</param>
            <param name="rcBrowser">The coordinates that the browser will occupy.</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.SetPropertyBag(System.String)">
            <summary>
            Sets the name of the property bag.
            </summary>
            <param name="pszPropertyBag">A pointer to a constant, null-terminated, Unicode string that contains
            the name of the property bag. View state information that is specific to the application of the 
            client is stored (persisted) using this name.</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.SetEmptyText(System.String)">
            <summary>
            Sets the default empty text.
            </summary>
            <param name="pszEmptyText">A pointer to a constant, null-terminated, Unicode string that contains 
            the empty text.</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.SetFolderSettings(Microsoft.WindowsAPICodePack.Controls.FOLDERSETTINGS)">
            <summary>
            Sets the folder settings for the current view.
            </summary>
            <param name="pfs">A pointer to a FOLDERSETTINGS structure that contains the folder settings 
            to be applied.</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.Advise(System.IntPtr,System.UInt32@)">
            <summary>
            Initiates a connection with IExplorerBrowser for event callbacks.
            </summary>
            <param name="psbe">A pointer to the IExplorerBrowserEvents interface of the object to be 
            advised of IExplorerBrowser events</param>
            <param name="pdwCookie">When this method returns, contains a token that uniquely identifies 
            the event listener. This allows several event listeners to be subscribed at a time.</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.Unadvise(System.UInt32)">
            <summary>
            Terminates an advisory connection.
            </summary>
            <param name="dwCookie">A connection token previously returned from IExplorerBrowser::Advise.
            Identifies the connection to be terminated.</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.SetOptions(Microsoft.WindowsAPICodePack.Controls.EXPLORER_BROWSER_OPTIONS)">
            <summary>
            Sets the current browser options.
            </summary>
            <param name="dwFlag">One or more EXPLORER_BROWSER_OPTIONS flags to be set.</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.GetOptions(Microsoft.WindowsAPICodePack.Controls.EXPLORER_BROWSER_OPTIONS@)">
            <summary>
            Gets the current browser options.
            </summary>
            <param name="pdwFlag">When this method returns, contains the current EXPLORER_BROWSER_OPTIONS 
            for the browser.</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.BrowseToIDList(System.IntPtr,System.UInt32)">
            <summary>
            Browses to a pointer to an item identifier list (PIDL)
            </summary>
            <param name="pidl">A pointer to a const ITEMIDLIST (item identifier list) that specifies an object's 
            location as the destination to navigate to. This parameter can be NULL.</param>
            <param name="uFlags">A flag that specifies the category of the pidl. This affects how 
            navigation is accomplished</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.BrowseToObject(System.Object,System.UInt32)">
            <summary>
            Browse to an object
            </summary>
            <param name="punk">A pointer to an object to browse to. If the object cannot be browsed, 
            an error value is returned.</param>
            <param name="uFlags">A flag that specifies the category of the pidl. This affects how 
            navigation is accomplished. </param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.FillFromObject(System.Object,System.Int32)">
            <summary>
            Creates a results folder and fills it with items.
            </summary>
            <param name="punk">An interface pointer on the source object that will fill the IResultsFolder</param>
            <param name="dwFlags">One of the EXPLORER_BROWSER_FILL_FLAGS</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.RemoveAll">
            <summary>
            Removes all items from the results folder.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Controls.IExplorerBrowser.GetCurrentView(System.Guid@,System.IntPtr@)">
            <summary>
            Gets an interface for the current view of the browser.
            </summary>
            <param name="riid">A reference to the desired interface ID.</param>
            <param name="ppv">When this method returns, contains the interface pointer requested in riid. 
            This will typically be IShellView or IShellView2. </param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.StockIconsNativeMethods.StockIconOptions">
            <summary>
            Specifies options for the appearance of the 
            stock icon.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconsNativeMethods.StockIconOptions.Large">
            <summary>
            Retrieve the small version of the icon, as specified by  
            SM_CXICON and SM_CYICON system metrics.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconsNativeMethods.StockIconOptions.Small">
            <summary>
            Retrieve the small version of the icon, as specified by  
            SM_CXSMICON and SM_CYSMICON system metrics.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconsNativeMethods.StockIconOptions.ShellSize">
            <summary>
            Retrieve the shell-sized icons (instead of the 
            size specified by the system metrics). 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconsNativeMethods.StockIconOptions.Handle">
            <summary>
            Specified that the hIcon member of the SHSTOCKICONINFO 
            structure receives a handle to the specified icon.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconsNativeMethods.StockIconOptions.SystemIndex">
            <summary>
            Specifies that the iSysImageImage member of the SHSTOCKICONINFO 
            structure receives the index of the specified 
            icon in the system imagelist.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconsNativeMethods.StockIconOptions.LinkOverlay">
            <summary>
            Adds the link overlay to the icon.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.StockIconsNativeMethods.StockIconOptions.Selected">
            <summary>
             Adds the system highlight color to the icon.
             </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.GlassForm">
            <summary>
            Windows Glass Form
            Inherit from this form to be able to enable glass on Windows Form
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.GlassForm.SetAeroGlassTransparency">
            <summary>
            Makes the background of current window transparent
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.GlassForm.ExcludeControlFromAeroGlass(System.Windows.Forms.Control)">
            <summary>
            Excludes a Control from the AeroGlass frame.
            </summary>
            <param name="control">The control to exclude.</param>
            <remarks>Many non-WPF rendered controls (i.e., the ExplorerBrowser control) will not 
            render properly on top of an AeroGlass frame. </remarks>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.GlassForm.ResetAreoGlass">
            <summary>
            Resets the AeroGlass exclusion area.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.GlassForm.WndProc(System.Windows.Forms.Message@)">
            <summary>
            Catches the DWM messages to this window and fires the appropriate event.
            </summary>
            <param name="m"></param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.GlassForm.OnLoad(System.EventArgs)">
            <summary>
            Initializes the Form for AeroGlass
            </summary>
            <param name="e">The arguments for this event</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.GlassForm.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            Overide OnPaint to paint the background as black.
            </summary>
            <param name="e">PaintEventArgs</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.GlassForm.AeroGlassCompositionEnabled">
            <summary>
            Get determines if AeroGlass is enabled on the desktop. Set enables/disables AreoGlass on the desktop.
            </summary>
        </member>
        <member name="E:Microsoft.WindowsAPICodePack.Shell.GlassForm.AeroGlassCompositionChanged">
            <summary>
            Fires when the availability of Glass effect changes.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectFactory.Create(Microsoft.WindowsAPICodePack.Shell.IShellItem)">
            <summary>
            Creates a ShellObject given a native IShellItem interface
            </summary>
            <param name="nativeShellItem"></param>
            <returns>A newly constructed ShellObject object</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectFactory.Create(System.String)">
            <summary>
            Creates a ShellObject given a parsing name
            </summary>
            <param name="parsingName"></param>
            <returns>A newly constructed ShellObject object</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectFactory.Create(System.IntPtr)">
            <summary>
            Constructs a new Shell object from IDList pointer
            </summary>
            <param name="idListPtr"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectFactory.Create(System.IntPtr,Microsoft.WindowsAPICodePack.Shell.ShellContainer)">
            <summary>
            Constructs a new Shell object from IDList pointer
            </summary>
            <param name="idListPtr"></param>
            <param name="parent"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailNativeMethods.SetIconicThumbnail(System.IntPtr,System.IntPtr)">
            <summary>
            Sets the specified iconic thumbnail for the specified window.
            This is typically done in response to a DWM message.
            </summary>
            <param name="hwnd">The window handle.</param>
            <param name="hBitmap">The thumbnail bitmap.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailNativeMethods.SetPeekBitmap(System.IntPtr,System.IntPtr,System.Boolean)">
            <summary>
            Sets the specified peek (live preview) bitmap for the specified
            window.  This is typically done in response to a DWM message.
            </summary>
            <param name="hwnd">The window handle.</param>
            <param name="bitmap">The thumbnail bitmap.</param>
            <param name="displayFrame">Whether to display a standard window
            frame around the bitmap.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailNativeMethods.SetPeekBitmap(System.IntPtr,System.IntPtr,System.Drawing.Point,System.Boolean)">
            <summary>
            Sets the specified peek (live preview) bitmap for the specified
            window.  This is typically done in response to a DWM message.
            </summary>
            <param name="hwnd">The window handle.</param>
            <param name="bitmap">The thumbnail bitmap.</param>
            <param name="offset">The client area offset at which to display
            the specified bitmap.  The rest of the parent window will be
            displayed as "remembered" by the DWM.</param>
            <param name="displayFrame">Whether to display a standard window
            frame around the bitmap.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnailNativeMethods.EnableCustomWindowPreview(System.IntPtr,System.Boolean)">
            <summary>
            Call this method to either enable custom previews on the taskbar (second argument as true)
            or to disable (second argument as false). If called with True, the method will call DwmSetWindowAttribute
            for the specific window handle and let DWM know that we will be providing a custom bitmap for the thumbnail
            as well as Aero peek.
            </summary>
            <param name="hwnd"></param>
            <param name="enable"></param>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings">
            <summary>
            Internal class to represent the KnownFolder settings/properties
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.GetFolderProperties(Microsoft.WindowsAPICodePack.Shell.IKnownFolderNative)">
            <summary>
            Populates a structure that contains 
            this known folder's properties.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.GetPath(System.Boolean@,Microsoft.WindowsAPICodePack.Shell.IKnownFolderNative)">
            <summary>
            Gets the path of this this known folder.
            </summary>
            <param name="fileExists">
            Returns false if the folder is virtual, or a boolean
            value that indicates whether this known folder exists.
            </param>
            <param name="knownFolderNative">Native IKnownFolder reference</param>
            <returns>
            A <see cref="T:System.String"/> containing the path, or <see cref="F:System.String.Empty"/> if this known folder does not exist.
            </returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.Path">
            <summary>
            Gets the path for this known folder.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.Category">
            <summary>
            Gets the category designation for this known folder.
            </summary>
            <value>A <see cref="T:Microsoft.WindowsAPICodePack.Shell.FolderCategory"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.CanonicalName">
            <summary>
            Gets this known folder's canonical name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.Description">
            <summary>
            Gets this known folder's description.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.ParentId">
            <summary>
            Gets the unique identifier for this known folder's parent folder.
            </summary>
            <value>A <see cref="T:System.Guid"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.RelativePath">
            <summary>
            Gets this known folder's relative path.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.Tooltip">
            <summary>
            Gets this known folder's tool tip text.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.TooltipResourceId">
            <summary>
            Gets the resource identifier for this 
            known folder's tool tip text.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.LocalizedName">
            <summary>
            Gets this known folder's localized name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.LocalizedNameResourceId">
            <summary>
            Gets the resource identifier for this 
            known folder's localized name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.Security">
            <summary>
            Gets this known folder's security attributes.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.FileAttributes">
            <summary>
            Gets this known folder's file attributes, 
            such as "read-only".
            </summary>
            <value>A <see cref="T:System.IO.FileAttributes"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.DefinitionOptions">
            <summary>
            Gets an value that describes this known folder's behaviors.
            </summary>
            <value>A <see cref="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.DefinitionOptions"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.FolderTypeId">
            <summary>
            Gets the unique identifier for this known folder's type.
            </summary>
            <value>A <see cref="T:System.Guid"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.FolderType">
            <summary>
            Gets a string representation of this known folder's type.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.FolderId">
            <summary>
            Gets the unique identifier for this known folder.
            </summary>
            <value>A <see cref="T:System.Guid"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.PathExists">
            <summary>
            Gets a value that indicates whether this known folder's path exists on the computer. 
            </summary>
            <value>A bool<see cref="T:System.Boolean"/> value.</value>
            <remarks>If this property value is <b>false</b>, 
            the folder might be a virtual folder (<see cref="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.Category"/> property will
            be <see cref="F:Microsoft.WindowsAPICodePack.Shell.FolderCategory.Virtual"/> for virtual folders)</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.KnownFolderSettings.Redirection">
            <summary>
            Gets a value that states whether this known folder 
            can have its path set to a new value, 
            including any restrictions on the redirection.
            </summary>
            <value>A <see cref="T:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities"/> value.</value>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.DefinitionOptions">
            <summary>
            Specifies behaviors for known folders.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefinitionOptions.None">
            <summary>
            No behaviors are defined.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefinitionOptions.LocalRedirectOnly">
            <summary>
            Prevents a per-user known folder from being 
            redirected to a network location.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefinitionOptions.Roamable">
            <summary>
            The known folder can be roamed through PC-to-PC synchronization.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.DefinitionOptions.Precreate">
            <summary>
            Creates the known folder when the user first logs on.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarWindow.Finalize">
            <summary>
            
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.TaskbarWindow.Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink">
            <summary>
            Represents a jump list link object.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of a JumpListLink with the specified path.
            </summary>
            <param name="pathValue">The path to the item. The path is required for the JumpList Link</param>
            <param name="titleValue">The title for the JumpListLink item. The title is required for the JumpList link.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.Dispose(System.Boolean)">
            <summary>
            Release the native and managed objects
            </summary>
            <param name="disposing">Indicates that this is being called from Dispose(), rather than the finalizer.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.Dispose">
            <summary>
            Release the native objects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.Finalize">
            <summary>
            Implement the finalizer.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.Title">
            <summary>
            Gets or sets the link's title
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.Path">
            <summary>
            Gets or sets the link's path
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.IconReference">
            <summary>
            Gets or sets the icon reference (location and index) of the link's icon.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.Arguments">
            <summary>
            Gets or sets the object's arguments (passed to the command line).
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.WorkingDirectory">
            <summary>
            Gets or sets the object's working directory.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.ShowCommand">
            <summary>
            Gets or sets the show command of the lauched application.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Taskbar.JumpListLink.NativeShellLink">
            <summary>
            Gets an IShellLinkW representation of this object
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder">
            <summary>
            Represents a registered non file system Known Folder
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.Dispose(System.Boolean)">
            <summary>
            Release resources
            </summary>
            <param name="disposing">Indicates that this mothod is being called from Dispose() rather than the finalizer.</param>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.Path">
            <summary>
            Gets the path for this known folder.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.Category">
            <summary>
            Gets the category designation for this known folder.
            </summary>
            <value>A <see cref="T:Microsoft.WindowsAPICodePack.Shell.FolderCategory"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.CanonicalName">
            <summary>
            Gets this known folder's canonical name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.Description">
            <summary>
            Gets this known folder's description.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.ParentId">
            <summary>
            Gets the unique identifier for this known folder's parent folder.
            </summary>
            <value>A <see cref="T:System.Guid"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.RelativePath">
            <summary>
            Gets this known folder's relative path.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.ParsingName">
            <summary>
            Gets this known folder's parsing name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.Tooltip">
            <summary>
            Gets this known folder's tool tip text.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.TooltipResourceId">
            <summary>
            Gets the resource identifier for this 
            known folder's tool tip text.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.LocalizedName">
            <summary>
            Gets this known folder's localized name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.LocalizedNameResourceId">
            <summary>
            Gets the resource identifier for this 
            known folder's localized name.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.Security">
            <summary>
            Gets this known folder's security attributes.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.FileAttributes">
            <summary>
            Gets this known folder's file attributes, 
            such as "read-only".
            </summary>
            <value>A <see cref="T:System.IO.FileAttributes"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.DefinitionOptions">
            <summary>
            Gets an value that describes this known folder's behaviors.
            </summary>
            <value>A <see cref="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.DefinitionOptions"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.FolderTypeId">
            <summary>
            Gets the unique identifier for this known folder's type.
            </summary>
            <value>A <see cref="T:System.Guid"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.FolderType">
            <summary>
            Gets a string representation of this known folder's type.
            </summary>
            <value>A <see cref="T:System.String"/> object.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.FolderId">
            <summary>
            Gets the unique identifier for this known folder.
            </summary>
            <value>A <see cref="T:System.Guid"/> value.</value>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.PathExists">
            <summary>
            Gets a value that indicates whether this known folder's path exists on the computer. 
            </summary>
            <value>A bool<see cref="T:System.Boolean"/> value.</value>
            <remarks>If this property value is <b>false</b>, 
            the folder might be a virtual folder (<see cref="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.Category"/> property will
            be <see cref="F:Microsoft.WindowsAPICodePack.Shell.FolderCategory.Virtual"/> for virtual folders)</remarks>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.NonFileSystemKnownFolder.Redirection">
            <summary>
            Gets a value that states whether this known folder 
            can have its path set to a new value, 
            including any restrictions on the redirection.
            </summary>
            <value>A <see cref="T:Microsoft.WindowsAPICodePack.Shell.RedirectionCapabilities"/> value.</value>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers">
            <summary>
            Contains the GUID identifiers for well-known folders.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.NameForGuid(System.Guid)">
            <summary>
            Returns the friendly name for a specified folder.
            </summary>
            <param name="folderId">The Guid identifier for a known folder.</param>
            <returns>A <see cref="T:System.String"/> value.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.GetAllFolders">
            <summary>
            Returns a sorted list of name, guid pairs for 
            all known folders.
            </summary>
            <returns></returns>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Computer">
            <summary>
            Computer
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Conflict">
            <summary>
            Conflicts
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ControlPanel">
            <summary>
            Control Panel
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Desktop">
            <summary>
            Desktop
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Internet">
            <summary>
            Internet Explorer
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Network">
            <summary>
            Network
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Printers">
            <summary>
            Printers
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SyncManager">
            <summary>
            Sync Center
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Connections">
            <summary>
            Network Connections
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SyncSetup">
            <summary>
            Sync Setup
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SyncResults">
            <summary>
            Sync Results
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.RecycleBin">
            <summary>
            Recycle Bin
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Fonts">
            <summary>
            Fonts
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Startup">
            <summary>
            Startup
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Programs">
            <summary>
            Programs
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.StartMenu">
            <summary>
            Start Menu
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Recent">
            <summary>
            Recent Items
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SendTo">
            <summary>
            SendTo
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Documents">
            <summary>
            Documents
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Favorites">
            <summary>
            Favorites
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.NetHood">
            <summary>
            Network Shortcuts
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PrintHood">
            <summary>
            Printer Shortcuts
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Templates">
            <summary>
            Templates
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.CommonStartup">
            <summary>
            Startup
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.CommonPrograms">
            <summary>
            Programs
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.CommonStartMenu">
            <summary>
            Start Menu
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PublicDesktop">
            <summary>
            Public Desktop
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ProgramData">
            <summary>
            ProgramData
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.CommonTemplates">
            <summary>
            Templates
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PublicDocuments">
            <summary>
            Public Documents
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.RoamingAppData">
            <summary>
            Roaming
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.LocalAppData">
            <summary>
            Local
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.LocalAppDataLow">
            <summary>
            LocalLow
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.InternetCache">
            <summary>
            Temporary Internet Files
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Cookies">
            <summary>
            Cookies
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.History">
            <summary>
            History
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.System">
            <summary>
            System32
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SystemX86">
            <summary>
            System32
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Windows">
            <summary>
            Windows
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Profile">
            <summary>
            The user's username (%USERNAME%)
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Pictures">
            <summary>
            Pictures
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ProgramFilesX86">
            <summary>
            Program Files
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ProgramFilesCommonX86">
            <summary>
            Common Files
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ProgramFilesX64">
            <summary>
            Program Files
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ProgramFilesCommonX64">
            <summary>
            Common Files
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ProgramFiles">
            <summary>
            Program Files
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ProgramFilesCommon">
            <summary>
            Common Files
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.AdminTools">
            <summary>
            Administrative Tools
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.CommonAdminTools">
            <summary>
            Administrative Tools
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Music">
            <summary>
            Music
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Videos">
            <summary>
            Videos
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PublicPictures">
            <summary>
            Public Pictures
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PublicMusic">
            <summary>
            Public Music
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PublicVideos">
            <summary>
            Public Videos
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ResourceDir">
            <summary>
            Resources
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.LocalizedResourcesDir">
            <summary>
            None
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.CommonOEMLinks">
            <summary>
            OEM Links
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.CDBurning">
            <summary>
            Temporary Burn Folder
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.UserProfiles">
            <summary>
            Users
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Playlists">
            <summary>
            Playlists
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SamplePlaylists">
            <summary>
            Sample Playlists
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SampleMusic">
            <summary>
            Sample Music
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SamplePictures">
            <summary>
            Sample Pictures
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SampleVideos">
            <summary>
            Sample Videos
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PhotoAlbums">
            <summary>
            Slide Shows
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Public">
            <summary>
            Public
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ChangeRemovePrograms">
            <summary>
            Programs and Features
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.AppUpdates">
            <summary>
            Installed Updates
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.AddNewPrograms">
            <summary>
            Get Programs
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Downloads">
            <summary>
            Downloads
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PublicDownloads">
            <summary>
            Public Downloads
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SavedSearches">
            <summary>
            Searches
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.QuickLaunch">
            <summary>
            Quick Launch
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Contacts">
            <summary>
            Contacts
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SidebarParts">
            <summary>
            Gadgets
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SidebarDefaultParts">
            <summary>
            Gadgets
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.TreeProperties">
            <summary>
            Tree property value folder
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PublicGameTasks">
            <summary>
            GameExplorer
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.GameTasks">
            <summary>
            GameExplorer
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SavedGames">
            <summary>
            Saved Games
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Games">
            <summary>
            Games
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.RecordedTV">
            <summary>
            Recorded TV
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SearchMapi">
            <summary>
            Microsoft Office Outlook
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SearchCsc">
            <summary>
            Offline Files
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Links">
            <summary>
            Links
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.UsersFiles">
            <summary>
            The user's full name (for instance, Jean Philippe Bagel) entered when the user account was created.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.SearchHome">
            <summary>
            Search home
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.OriginalImages">
            <summary>
            Original Images
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.UserProgramFiles">
            <summary>
            UserProgramFiles
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.UserProgramFilesCommon">
            <summary>
            UserProgramFilesCommon
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Ringtones">
            <summary>
            Ringtones
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PublicRingtones">
            <summary>
            PublicRingtones
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.UsersLibraries">
            <summary>
            UsersLibraries
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.DocumentsLibrary">
            <summary>
            DocumentsLibrary
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.MusicLibrary">
            <summary>
            MusicLibrary
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.PicturesLibrary">
            <summary>
            PicturesLibrary
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.VideosLibrary">
            <summary>
            VideosLibrary
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.RecordedTVLibrary">
            <summary>
            RecordedTVLibrary
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.OtherUsers">
            <summary>
            OtherUsers
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.DeviceMetadataStore">
            <summary>
            DeviceMetadataStore
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.Libraries">
            <summary>
            Libraries
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.UserPinned">
            <summary>
            UserPinned
            </summary>
        </member>
        <member name="F:Microsoft.WindowsAPICodePack.Shell.FolderIdentifiers.ImplicitAppShortcuts">
            <summary>
            ImplicitAppShortcuts
            </summary>
        </member>
        <member name="T:MS.WindowsAPICodePack.Internal.ExplorerBrowserViewEvents">
            <summary>
            This provides a connection point container compatible dispatch interface for
            hooking into the ExplorerBrowser view.
            </summary>
        </member>
        <member name="M:MS.WindowsAPICodePack.Internal.ExplorerBrowserViewEvents.ViewSelectionChanged">
            <summary>
            The view selection has changed
            </summary>
        </member>
        <member name="M:MS.WindowsAPICodePack.Internal.ExplorerBrowserViewEvents.ViewContentsChanged">
            <summary>
            The contents of the view have changed
            </summary>
        </member>
        <member name="M:MS.WindowsAPICodePack.Internal.ExplorerBrowserViewEvents.ViewFileListEnumDone">
            <summary>
            The enumeration of files in the view is complete
            </summary>
        </member>
        <member name="M:MS.WindowsAPICodePack.Internal.ExplorerBrowserViewEvents.ViewSelectedItemChanged">
            <summary>
            The selected item in the view has changed (not the same as the selection has changed)
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection">
            <summary>
            An ennumerable list of ShellObjects
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.#ctor(Microsoft.WindowsAPICodePack.Shell.IShellItemArray,System.Boolean)">
            <summary>
            Creates a ShellObject collection from an IShellItemArray
            </summary>
            <param name="iArray">IShellItemArray pointer</param>
            <param name="readOnly">Indicates whether the collection shouldbe read-only or not</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.FromDataObject(System.Object)">
            <summary>
            Creates a ShellObjectCollection from an IDataObject passed during Drop operation.
            </summary>
            <param name="dataObject">An object that implements the IDataObject COM interface.</param>
            <returns>ShellObjectCollection created from the given IDataObject</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.#ctor">
            <summary>
            Constructs an empty ShellObjectCollection
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.Finalize">
            <summary>
            
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.Dispose">
            <summary>
            Standard Dispose pattern
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.Dispose(System.Boolean)">
            <summary>
            Standard Dispose patterns 
            </summary>
            <param name="disposing">Indicates that this is being called from Dispose(), rather than the finalizer.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.GetEnumerator">
            <summary>
            Collection enumeration
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.BuildShellIDList">
            <summary>
            Builds the data for the CFSTR_SHELLIDLIST Drag and Clipboard data format from the 
            ShellObjects in the collection.
            </summary>
            <returns>A memory stream containing the drag/drop data.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.IndexOf(Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Returns the index of a particualr shell object in the collection
            </summary>
            <param name="item">The item to search for.</param>
            <returns>The index of the item found, or -1 if not found.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.Insert(System.Int32,Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Inserts a new shell object into the collection.
            </summary>
            <param name="index">The index at which to insert.</param>
            <param name="item">The item to insert.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.RemoveAt(System.Int32)">
            <summary>
            Removes the specified ShellObject from the collection
            </summary>
            <param name="index">The index to remove at.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.Add(Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Adds a ShellObject to the collection,
            </summary>
            <param name="item">The ShellObject to add.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.Clear">
            <summary>
            Clears the collection of ShellObjects.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.Contains(Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Determines if the collection contains a particular ShellObject.
            </summary>
            <param name="item">The ShellObject.</param>
            <returns>true, if the ShellObject is in the list, false otherwise.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.CopyTo(Microsoft.WindowsAPICodePack.Shell.ShellObject[],System.Int32)">
            <summary>
            Copies the ShellObjects in the collection to a ShellObject array.
            </summary>
            <param name="array">The destination to copy to.</param>
            <param name="arrayIndex">The index into the array at which copying will commence.</param>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.Remove(Microsoft.WindowsAPICodePack.Shell.ShellObject)">
            <summary>
            Removes a particular ShellObject from the list.
            </summary>
            <param name="item">The ShellObject to remove.</param>
            <returns>True if the item could be removed, false otherwise.</returns>
        </member>
        <member name="M:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.System#Collections#Generic#IEnumerable{Microsoft#WindowsAPICodePack#Shell#ShellObject}#GetEnumerator">
            <summary>
            Allows for enumeration through the list of ShellObjects in the collection.
            </summary>
            <returns>The IEnumerator interface to use for enumeration.</returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.Count">
            <summary>
            Item count
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.Item(System.Int32)">
            <summary>
            The collection indexer
            </summary>
            <param name="index">The index of the item to retrieve.</param>
            <returns>The ShellObject at the specified index</returns>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.System#Collections#Generic#ICollection{Microsoft#WindowsAPICodePack#Shell#ShellObject}#Count">
            <summary>
            Retrieves the number of ShellObjects in the collection
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAPICodePack.Shell.ShellObjectCollection.IsReadOnly">
            <summary>
            If true, the contents of the collection are immutable.
            </summary>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
President
India India
Did you like his post?

Oh, lets go a bit further to know him better.
Visit his Website : www.abhisheksur.com to know more about Abhishek.

Abhishek also authored a book on .NET 4.5 Features and recommends you to read it, you will learn a lot from it.
http://bit.ly/EXPERTCookBook

Basically he is from India, who loves to explore the .NET world. He loves to code and in his leisure you always find him talking about technical stuffs.

Working as a VP product of APPSeCONNECT, an integration platform of future, he does all sort of innovation around the product.

Have any problem? Write to him in his Forum.

You can also mail him directly to abhi2434@yahoo.com

Want a Coder like him for your project?
Drop him a mail to contact@abhisheksur.com

Visit His Blog

Dotnet Tricks and Tips



Dont forget to vote or share your comments about his Writing

Comments and Discussions