File: System\Security\Policy\EvidenceBase.cs
Web Access
Project: src\runtime\src\libraries\System.Security.AccessControl\src\System.Security.AccessControl.csproj (System.Security.AccessControl)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace System.Security.Policy
{
    public abstract partial class EvidenceBase
    {
        protected EvidenceBase() { }
        public virtual EvidenceBase? Clone() { return default(EvidenceBase); }
    }
}