// Copyright © 2014 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. namespace CefSharp { /// /// Information about a specific web plugin. /// public sealed class WebPluginInfo { /// /// Gets or sets the plugin name (i.e. Flash). /// public string Name { get; private set; } /// /// Gets or sets tge description of the plugin from the version information. /// public string Description { get; private set; } /// /// Gets or sets the plugin file path (DLL/bundle/library). /// public string Path { get; private set; } /// /// Gets or sets the version of the plugin (may be OS-specific). /// public string Version { get; private set; } /// /// WebPluginInfo /// /// name /// description /// path /// version public WebPluginInfo(string name, string description, string path, string version) { Name = name; Description = description; Path = path; Version = version; } } }