FileDialogCustomPlacesCollection.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / FileDialogCustomPlacesCollection.cs / 1 / FileDialogCustomPlacesCollection.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

using System; 
using System.Collections.ObjectModel; 
using System.IO;
using System.Security; 
using System.Security.Permissions;

namespace System.Windows.Forms
{ 
    public class FileDialogCustomPlacesCollection : Collection
    { 
        internal void Apply(FileDialogNative.IFileDialog dialog) 
        {
            //Assert FileIOPermission for getting the paths for the favorites 
            new FileIOPermission(PermissionState.Unrestricted).Assert();
            //Walk backwards
            for (int i = this.Items.Count - 1; i >= 0; --i)
            { 
                FileDialogCustomPlace customPlace = this.Items[i];
                try 
                { 
                    FileDialogNative.IShellItem shellItem = customPlace.GetNativePath();
                    if (null != shellItem) 
                    {
                        dialog.AddPlace(shellItem, 0);
                    }
                } 
                catch (FileNotFoundException)
                { 
                } 
                //Silently absorb FileNotFound exceptions (these could be caused by a path that disappeared after the place was added to the dialog).
            } 
        }

        public void Add(string path)
        { 
            Add(new FileDialogCustomPlace(path));
        } 
 
        public void Add(Guid knownFolderGuid)
        { 
            Add(new FileDialogCustomPlace(knownFolderGuid));
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK