BExplorer.Shell.ShellSearchFolder.SetDisplayName C# (CSharp) Method

SetDisplayName() public method

Sets the search folder display name.
public SetDisplayName ( string displayName ) : void
displayName string
return void
        public void SetDisplayName(string displayName)
        {
            HResult hr = NativeSearchFolderItemFactory.SetDisplayName(displayName);
            if (hr != HResult.S_OK) throw new Exception(hr.ToString());
        }