WebTest.WebService.Plugin.ResultTab.xml
11.4 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<?xml version="1.0"?>
<doc>
<assembly>
<name>WebTest.WebService.Plugin.ResultTab</name>
</assembly>
<members>
<member name="T:WebTest.WebService.Plugin.ResultTab.Connect">
<summary>
The object for implementing an Add-in.
</summary>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.Connect.GetInstance">
<summary>
Returns the instance of plugin
</summary>
<returns></returns>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.Connect.#ctor">
<summary>
Implements the constructor for the Add-in object. Place your initialization code within this method.
</summary>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.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:WebTest.WebService.Plugin.ResultTab.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:WebTest.WebService.Plugin.ResultTab.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:WebTest.WebService.Plugin.ResultTab.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:WebTest.WebService.Plugin.ResultTab.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:WebTest.WebService.Plugin.ResultTab.Connect.ShowInXMLEditor(System.String,System.String)">
<summary>
Shows text in Visual Studio XML Editor
</summary>
<param name="caption"></param>
<param name="xml"></param>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.Connect.AddWebTestRecording(Microsoft.VisualStudio.TestTools.WebTesting.DeclarativeWebTest)">
<summary>
</summary>
<param name="newWebTest"></param>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.Connect.GetWebTest(System.Guid)">
<summary>
1. Maintain a list of known Web Tests - GUID VS Path
2. Add to the list when a new recording is done
3. If not found in the list, go through list of project items under solution,
parse each web test, and add to known web tests and attach to control
4. If no Web Test is found, the control will disable extraction rules
</summary>
<param name="guid"></param>
<returns></returns>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.Connect.SearchProjectItemsForWebTest(EnvDTE.ProjectItems,System.Guid)">
<summary>
Iterates all project items and sub items for webtests and returns a match if found or null.
</summary>
<param name="items">The ProjectItem collection</param>
<param name="guid">The WebTest GUID to search for</param>
<returns></returns>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.Connect.GetActiveWebTest">
<summary>
Gets the details of currently open Web Test
</summary>
<returns></returns>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.Connect.AddReference(VSLangProj.VSProject,System.Collections.Generic.ICollection{System.Reflection.Assembly})">
<summary>
Add references to given projects.
</summary>
<param name="vsProject">Project.</param>
<param name="assemblies">Assemblies to add.</param>
</member>
<member name="T:WebTest.WebService.Plugin.ResultTab.Properties.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:WebTest.WebService.Plugin.ResultTab.Properties.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:WebTest.WebService.Plugin.ResultTab.Properties.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.WebServiceResult.AddExtractionRule(System.Object,System.EventArgs)">
<summary>
1. Enable Extraction Rule if known Web Test
2. Before adding extraction rule, check if there is an open unsaved document
3. Prompt user to save if unsaved, and save it
4. Parse Declarative Web Test from file, and add extraction rule
5. Open the document again, if it was open previously
6. Using TimeStamp,determine if Declarative Web Test at hand is uptodate.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="F:WebTest.WebService.Plugin.ResultTab.WebServiceResult.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.WebServiceResult.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.WebServiceResult.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:WebTest.WebService.Plugin.ResultTab.WebTestDetail">
<summary>
Details of a Declarative WebTest project Item
</summary>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.WebTestDetail.#ctor(System.String,EnvDTE80.DTE2)">
<summary>
</summary>
<param name="fullPath"></param>
<param name="applicationObject"></param>
</member>
<member name="P:WebTest.WebService.Plugin.ResultTab.WebTestDetail.WebTest">
<summary>
Web Test object
</summary>
</member>
<member name="P:WebTest.WebService.Plugin.ResultTab.WebTestDetail.FullPath">
<summary>
Path to the WebTest file
</summary>
</member>
<member name="P:WebTest.WebService.Plugin.ResultTab.WebTestDetail.LastSavedTimeStamp">
<summary>
LastSavedTimeStamp
</summary>
</member>
<member name="P:WebTest.WebService.Plugin.ResultTab.WebTestDetail.ProjectItem">
<summary>
ProjectItem of DTE
</summary>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.WebTestDetail.PrepareToSave">
<summary>
If there are pending changes, save first, as we are going to make our
changes to the file directly.
</summary>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.WebTestDetail.Save">
<summary>
Save WebTest to file
</summary>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.WebTestDetail.GetParameterList">
<summary>
Parse parameters from all items of Web Test
</summary>
<returns></returns>
</member>
<member name="T:WebTest.WebService.Plugin.ResultTab.XmlTreeView">
<summary>
Wrapper for TreeView to enable XML content view
</summary>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.XmlTreeView.#ctor(System.Windows.Forms.TreeView)">
<summary>
Wrapper for TreeView to enable XML content view
</summary>
<param name="treeView">TreeView where XML content needs to be shown</param>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.XmlTreeView.ShowXML(System.String)">
<summary>
Show XML in tree
</summary>
<param name="xmlString"></param>
<returns></returns>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.XmlTreeView.ShowXML(System.Xml.XmlReader)">
<summary>
Show XML in tree
</summary>
<param name="reader"></param>
<returns></returns>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.XmlTreeView.ShowXML(System.Xml.XmlDocument)">
<summary>
Show XML in tree
</summary>
<param name="dom"></param>
</member>
<member name="P:WebTest.WebService.Plugin.ResultTab.XmlTreeView.MessageEdited">
<summary>
Indicates whether message has been edited since last update
</summary>
</member>
<member name="M:WebTest.WebService.Plugin.ResultTab.XmlTreeView.AddParameter(System.String)">
<summary>
replaces currently selected XML node's contents with given parameter name
</summary>
<param name="parameterName">name of the parameter</param>
</member>
</members>
</doc>