You've already forked linux-packaging-mono
Imported Upstream version 5.0.0.42
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
This commit is contained in:
parent
1190d13a04
commit
6bdd276d05
33
external/corefx/src/System.Security.Principal/System.Security.Principal.sln
vendored
Normal file
33
external/corefx/src/System.Security.Principal/System.Security.Principal.sln
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.25123.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Security.Principal", "src\System.Security.Principal.csproj", "{FBE16BC8-AE2D-422C-861E-861814F53AF7}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "ref", "{4E760F4E-8D14-4E84-B982-C07CE5D577DC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Security.Principal", "ref\System.Security.Principal.csproj", "{DD4C4D55-5089-46E7-8D93-339EAF35FE2E}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{FBE16BC8-AE2D-422C-861E-861814F53AF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{FBE16BC8-AE2D-422C-861E-861814F53AF7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FBE16BC8-AE2D-422C-861E-861814F53AF7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FBE16BC8-AE2D-422C-861E-861814F53AF7}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{DD4C4D55-5089-46E7-8D93-339EAF35FE2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{DD4C4D55-5089-46E7-8D93-339EAF35FE2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{DD4C4D55-5089-46E7-8D93-339EAF35FE2E}.Release|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{DD4C4D55-5089-46E7-8D93-339EAF35FE2E}.Release|Any CPU.Build.0 = Debug|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{DD4C4D55-5089-46E7-8D93-339EAF35FE2E} = {4E760F4E-8D14-4E84-B982-C07CE5D577DC}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
8
external/corefx/src/System.Security.Principal/dir.props
vendored
Normal file
8
external/corefx/src/System.Security.Principal/dir.props
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\dir.props" />
|
||||
<PropertyGroup>
|
||||
<AssemblyVersion>4.1.0.0</AssemblyVersion>
|
||||
<IsNETCoreApp>true</IsNETCoreApp>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
9
external/corefx/src/System.Security.Principal/ref/Configurations.props
vendored
Normal file
9
external/corefx/src/System.Security.Principal/ref/Configurations.props
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<BuildConfigurations>
|
||||
netcoreapp;
|
||||
uap;
|
||||
</BuildConfigurations>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
36
external/corefx/src/System.Security.Principal/ref/System.Security.Principal.cs
vendored
Normal file
36
external/corefx/src/System.Security.Principal/ref/System.Security.Principal.cs
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
// Licensed to the .NET Foundation under one or more agreements.
|
||||
// The .NET Foundation licenses this file to you under the MIT license.
|
||||
// See the LICENSE file in the project root for more information.
|
||||
// ------------------------------------------------------------------------------
|
||||
// Changes to this file must follow the http://aka.ms/api-review process.
|
||||
// ------------------------------------------------------------------------------
|
||||
|
||||
|
||||
namespace System.Security.Principal
|
||||
{
|
||||
public partial interface IIdentity
|
||||
{
|
||||
string AuthenticationType { get; }
|
||||
bool IsAuthenticated { get; }
|
||||
string Name { get; }
|
||||
}
|
||||
public partial interface IPrincipal
|
||||
{
|
||||
System.Security.Principal.IIdentity Identity { get; }
|
||||
bool IsInRole(string role);
|
||||
}
|
||||
public enum TokenImpersonationLevel
|
||||
{
|
||||
Anonymous = 1,
|
||||
Delegation = 4,
|
||||
Identification = 2,
|
||||
Impersonation = 3,
|
||||
None = 0,
|
||||
}
|
||||
public enum PrincipalPolicy
|
||||
{
|
||||
NoPrincipal = 1,
|
||||
UnauthenticatedPrincipal = 0,
|
||||
WindowsPrincipal = 2,
|
||||
}
|
||||
}
|
||||
15
external/corefx/src/System.Security.Principal/ref/System.Security.Principal.csproj
vendored
Normal file
15
external/corefx/src/System.Security.Principal/ref/System.Security.Principal.csproj
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcoreapp-Debug|AnyCPU'" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcoreapp-Release|AnyCPU'" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'uap-Debug|AnyCPU'" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'uap-Release|AnyCPU'" />
|
||||
<ItemGroup>
|
||||
<Compile Include="System.Security.Principal.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\System.Runtime\ref\System.Runtime.csproj" />
|
||||
</ItemGroup>
|
||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
|
||||
</Project>
|
||||
10
external/corefx/src/System.Security.Principal/src/Configurations.props
vendored
Normal file
10
external/corefx/src/System.Security.Principal/src/Configurations.props
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<BuildConfigurations>
|
||||
net463-Windows_NT;
|
||||
uap101aot-Windows_NT;
|
||||
netcoreapp;
|
||||
</BuildConfigurations>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
32
external/corefx/src/System.Security.Principal/src/System.Security.Principal.csproj
vendored
Normal file
32
external/corefx/src/System.Security.Principal/src/System.Security.Principal.csproj
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
|
||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
||||
<PropertyGroup>
|
||||
<AssemblyName>System.Security.Principal</AssemblyName>
|
||||
<ProjectGuid>{FBE16BC8-AE2D-422C-861E-861814F53AF7}</ProjectGuid>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<IsPartialFacadeAssembly Condition="'$(TargetGroup)' == 'net463'">true</IsPartialFacadeAssembly>
|
||||
<ResourcesSourceOutputDirectory Condition="'$(TargetGroup)' == 'net463'">None</ResourcesSourceOutputDirectory>
|
||||
<!-- copy to uap10.1 until nuget makes the change to map that to ns1.7 -->
|
||||
</PropertyGroup>
|
||||
<!-- Default configurations to help VS understand the options -->
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='net463-Windows_NT-Debug|AnyCPU'" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='net463-Windows_NT-Release|AnyCPU'" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='uap101aot-Windows_NT-Debug|AnyCPU'" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='uap101aot-Windows_NT-Release|AnyCPU'" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netcoreapp-Debug|AnyCPU'" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netcoreapp-Release|AnyCPU'" />
|
||||
<ItemGroup Condition="'$(TargetGroup)' == 'netcoreapp'">
|
||||
<Compile Include="System\Security\Principal\IIdentity.cs" />
|
||||
<Compile Include="System\Security\Principal\IPrincipal.cs" />
|
||||
<Compile Include="System\Security\Principal\PrincipalPolicy.cs" />
|
||||
<Compile Include="System\Security\Principal\TokenImpersonationLevel.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition="'$(TargetGroup)' == 'net463'">
|
||||
<TargetingPackReference Include="mscorlib" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System.Runtime" />
|
||||
</ItemGroup>
|
||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
|
||||
</Project>
|
||||
24
external/corefx/src/System.Security.Principal/src/System/Security/Principal/IIdentity.cs
vendored
Normal file
24
external/corefx/src/System.Security.Principal/src/System/Security/Principal/IIdentity.cs
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
// Licensed to the .NET Foundation under one or more agreements.
|
||||
// The .NET Foundation licenses this file to you under the MIT license.
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
//
|
||||
// All identities will implement this interface
|
||||
//
|
||||
|
||||
using System;
|
||||
|
||||
namespace System.Security.Principal
|
||||
{
|
||||
public interface IIdentity
|
||||
{
|
||||
// Access to the name string
|
||||
string Name { get; }
|
||||
|
||||
// Access to Authentication 'type' info
|
||||
string AuthenticationType { get; }
|
||||
|
||||
// Determine if this represents the unauthenticated identity
|
||||
bool IsAuthenticated { get; }
|
||||
}
|
||||
}
|
||||
21
external/corefx/src/System.Security.Principal/src/System/Security/Principal/IPrincipal.cs
vendored
Normal file
21
external/corefx/src/System.Security.Principal/src/System/Security/Principal/IPrincipal.cs
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
// Licensed to the .NET Foundation under one or more agreements.
|
||||
// The .NET Foundation licenses this file to you under the MIT license.
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
//
|
||||
// All roles will implement this interface
|
||||
//
|
||||
|
||||
using System;
|
||||
|
||||
namespace System.Security.Principal
|
||||
{
|
||||
public interface IPrincipal
|
||||
{
|
||||
// Retrieve the identity object
|
||||
IIdentity Identity { get; }
|
||||
|
||||
// Perform a check for a specific role
|
||||
bool IsInRole(string role);
|
||||
}
|
||||
}
|
||||
20
external/corefx/src/System.Security.Principal/src/System/Security/Principal/PrincipalPolicy.cs
vendored
Normal file
20
external/corefx/src/System.Security.Principal/src/System/Security/Principal/PrincipalPolicy.cs
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// Licensed to the .NET Foundation under one or more agreements.
|
||||
// The .NET Foundation licenses this file to you under the MIT license.
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
//
|
||||
// Enum describing what type of principal to create by default (assuming no
|
||||
// principal has been set on the AppDomain).
|
||||
//
|
||||
|
||||
namespace System.Security.Principal
|
||||
{
|
||||
[Serializable]
|
||||
public enum PrincipalPolicy
|
||||
{
|
||||
// Note: it's important that the default policy has the value 0.
|
||||
UnauthenticatedPrincipal = 0,
|
||||
NoPrincipal = 1,
|
||||
WindowsPrincipal = 2,
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
// Licensed to the .NET Foundation under one or more agreements.
|
||||
// The .NET Foundation licenses this file to you under the MIT license.
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
using System;
|
||||
|
||||
namespace System.Security.Principal
|
||||
{
|
||||
[Serializable]
|
||||
public enum TokenImpersonationLevel
|
||||
{
|
||||
None = 0,
|
||||
Anonymous = 1,
|
||||
Identification = 2,
|
||||
Impersonation = 3,
|
||||
Delegation = 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user