| 1234567891011121314 |
- // -----------------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // -----------------------------------------------------------------------
- using System;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- namespace System.UnitTesting
- {
- public enum RetryMode : int
- {
- DoNotRetry = 0,
- Retry = 1,
- }
- }
|