-
Notifications
You must be signed in to change notification settings - Fork 1
/
IISExpress.xml
102 lines (102 loc) · 5.88 KB
/
IISExpress.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0"?>
<doc>
<assembly>
<name>IISExpress</name>
</assembly>
<members>
<member name="T:IISExpress.Connect">
<summary>The object for implementing an Add-in.</summary>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:IISExpress.Connect.#ctor">
<summary>Implements the constructor for the Add-in object. Place your initialization code within this method.</summary>
</member>
<member name="M:IISExpress.Connect.OnConnection(System.Object,Extensibility.ext_ConnectMode,System.Object,System.Array@)">
<summary>Implements the OnConnection method of the IDTExtensibility2 interface. Receives notification that the Add-in is being loaded.</summary>
<param term='application'>Root object of the host application.</param>
<param term='connectMode'>Describes how the Add-in is being loaded.</param>
<param term='addInInst'>Object representing this Add-in.</param>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:IISExpress.Connect.OnDisconnection(Extensibility.ext_DisconnectMode,System.Array@)">
<summary>Implements the OnDisconnection method of the IDTExtensibility2 interface. Receives notification that the Add-in is being unloaded.</summary>
<param term='disconnectMode'>Describes how the Add-in is being unloaded.</param>
<param term='custom'>Array of parameters that are host application specific.</param>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:IISExpress.Connect.OnAddInsUpdate(System.Array@)">
<summary>Implements the OnAddInsUpdate method of the IDTExtensibility2 interface. Receives notification when the collection of Add-ins has changed.</summary>
<param term='custom'>Array of parameters that are host application specific.</param>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:IISExpress.Connect.OnStartupComplete(System.Array@)">
<summary>Implements the OnStartupComplete method of the IDTExtensibility2 interface. Receives notification that the host application has completed loading.</summary>
<param term='custom'>Array of parameters that are host application specific.</param>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:IISExpress.Connect.OnBeginShutdown(System.Array@)">
<summary>Implements the OnBeginShutdown method of the IDTExtensibility2 interface. Receives notification that the host application is being unloaded.</summary>
<param term='custom'>Array of parameters that are host application specific.</param>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:IISExpress.Connect.QueryStatus(System.String,EnvDTE.vsCommandStatusTextWanted,EnvDTE.vsCommandStatus@,System.Object@)">
<summary>Implements the QueryStatus method of the IDTCommandTarget interface. This is called when the command's availability is updated</summary>
<param term='commandName'>The name of the command to determine state for.</param>
<param term='neededText'>Text that is needed for the command.</param>
<param term='status'>The state of the command in the user interface.</param>
<param term='commandText'>Text requested by the neededText parameter.</param>
<seealso class='Exec' />
</member>
<member name="M:IISExpress.Connect.Exec(System.String,EnvDTE.vsCommandExecOption,System.Object@,System.Object@,System.Boolean@)">
<summary>Implements the Exec method of the IDTCommandTarget interface. This is called when the command is invoked.</summary>
<param term='commandName'>The name of the command to execute.</param>
<param term='executeOption'>Describes how the command should be run.</param>
<param term='varIn'>Parameters passed from the caller to the command handler.</param>
<param term='varOut'>Parameters passed from the command handler to the caller.</param>
<param term='handled'>Informs the caller if the command was handled or not.</param>
<seealso class='Exec' />
</member>
<member name="T:IISExpress.IISExpressManager">
<summary>
Management class for IIS Express
</summary>
</member>
<member name="M:IISExpress.IISExpressManager.#ctor(EnvDTE80.DTE2)">
<summary>
Initializes a new instance of the <see cref="T:IISExpress.IISExpressManager"/> class.
</summary>
<param name="dte">The DTE.</param>
</member>
<member name="M:IISExpress.IISExpressManager.AttachAllProcesses">
<summary>
Attaches all processes.
</summary>
</member>
<member name="M:IISExpress.IISExpressManager.StartIISExpress">
<summary>
Starts the IIS express.
</summary>
</member>
<member name="M:IISExpress.IISExpressManager.StopIISExpress">
<summary>
Stops the IIS express.
</summary>
</member>
<member name="T:IISExpress.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:IISExpress.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:IISExpress.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
</members>
</doc>