-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e20e5ef
commit c8876da
Showing
4 changed files
with
32 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
namespace WopiHost.Url | ||
{ | ||
/// <summary> | ||
/// This value is used to run the WOPI Validation application in different modes. | ||
/// This value can be set to All, OfficeOnline or OfficeNativeClient to activate tests specific to Office Online and Office for iOS.If omitted, the default value is All. | ||
/// </summary> | ||
public enum ValidatorTestCategoryEnum | ||
{ | ||
/// <summary> | ||
/// All: activates all WOPI Validation application tests. | ||
/// </summary> | ||
All, | ||
/// <summary> | ||
/// OfficeOnline: activates all tests necessary for Office Online integration. | ||
/// </summary> | ||
OfficeOnline, | ||
/// <summary> | ||
/// OfficeNativeClient: activates all tests necessary for Office for iOS integration. | ||
/// </summary> | ||
OfficeNativeClient | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters