3c1f479b9d
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
18 lines
587 B
C#
18 lines
587 B
C#
//------------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Activities.Tracking.Configuration
|
|
{
|
|
|
|
using System.Activities.Tracking;
|
|
|
|
static class ImplementationVisibilityHelper
|
|
{
|
|
public static bool IsDefined(ImplementationVisibility value)
|
|
{
|
|
return value == ImplementationVisibility.All || value == ImplementationVisibility.RootScope;
|
|
}
|
|
}
|
|
}
|