Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RetryMode.cs « UnitTesting « System « UnitTestFramework « Tests « System.ComponentModel.Composition « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bdda321a7c9c21f7f7c548a7845272c402cf87ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// -----------------------------------------------------------------------
// 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,
    }
}