Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Products
/
VSTT-Plugins
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
2
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
0f8854a0
...
0f8854a0f961713f2fa62f3b42fba5e9b3492d82
authored
2016-06-02 22:21:38 +0200
by
Christian Gerdes
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Dynamisk filter plugins: Sätter parse till false på alla dependents eftersom des…
…sa inte kan filtreras
1 parent
d718cd74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
LIL_VSTT_Plugins/WebTestPlugins.cs
LIL_VSTT_Plugins/WebTestPlugins.cs
View file @
0f8854a
...
...
@@ -99,6 +99,8 @@ namespace LIL_VSTT_Plugins
foreach
(
WebTestRequest
r
in
e
.
Request
.
DependentRequests
)
{
// Disable parsing on dependents since we cannot filter those
r
.
ParseDependentRequests
=
false
;
if
(
m_exclude
)
{
if
(
regex
.
IsMatch
(
r
.
Url
))
...
...
@@ -150,6 +152,8 @@ namespace LIL_VSTT_Plugins
foreach
(
WebTestRequest
r
in
e
.
Request
.
DependentRequests
)
{
// Disable parsing on dependents since we cannot filter those
r
.
ParseDependentRequests
=
false
;
if
(!
string
.
IsNullOrEmpty
(
m_startsWith
)
&&
r
.
Url
.
StartsWith
(
m_startsWith
))
{
...
...
@@ -197,6 +201,8 @@ namespace LIL_VSTT_Plugins
foreach
(
WebTestRequest
r
in
e
.
Request
.
DependentRequests
)
{
// Disable parsing on dependents since we cannot filter those
r
.
ParseDependentRequests
=
false
;
if
(!
string
.
IsNullOrEmpty
(
m_startsWith
)
&&
!
r
.
Url
.
StartsWith
(
m_startsWith
))
{
...
...
Please
register
or
sign in
to post a comment