2014-01-03 23:52:36 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2014-01-29 18:33:24 +08:00
|
|
|
|
namespace Wox.Plugin
|
2014-01-03 23:52:36 +08:00
|
|
|
|
{
|
|
|
|
|
public class PluginInitContext
|
|
|
|
|
{
|
2015-01-24 22:34:55 +08:00
|
|
|
|
public PluginMetadata CurrentPluginMetadata { get; internal set; }
|
2014-03-01 15:42:33 +08:00
|
|
|
|
|
2014-07-05 23:10:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Public APIs for plugin invocation
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IPublicAPI API { get; set; }
|
2014-01-05 17:56:02 +08:00
|
|
|
|
|
2014-07-18 20:00:55 +08:00
|
|
|
|
public IHttpProxy Proxy { get; set; }
|
2014-01-03 23:52:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|