You've already forked linux-packaging-mono
Imported Upstream version 5.20.0.180
Former-commit-id: ff953ca879339fe1e1211f7220f563e1342e66cb
This commit is contained in:
parent
0e2d47d1c8
commit
0510252385
42
mcs/class/corlib/corefx/BinaryEnums.cs
Normal file
42
mcs/class/corlib/corefx/BinaryEnums.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
// 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.Runtime.Serialization.Formatters;
|
||||
using System.Runtime.Remoting;
|
||||
using System.Runtime.Serialization;
|
||||
using System;
|
||||
|
||||
namespace System.Runtime.Serialization.Formatters.Binary
|
||||
{
|
||||
[Serializable]
|
||||
[Flags]
|
||||
internal enum MessageEnum
|
||||
{
|
||||
NoArgs = 0x1,
|
||||
ArgsInline = 0x2,
|
||||
ArgsIsArray = 0x4,
|
||||
ArgsInArray = 0x8,
|
||||
NoContext = 0x10,
|
||||
ContextInline = 0x20,
|
||||
ContextInArray = 0x40,
|
||||
MethodSignatureInArray = 0x80,
|
||||
PropertyInArray = 0x100,
|
||||
NoReturnValue = 0x200,
|
||||
ReturnValueVoid = 0x400,
|
||||
ReturnValueInline = 0x800,
|
||||
ReturnValueInArray = 0x1000,
|
||||
ExceptionInArray = 0x2000,
|
||||
GenericMethod = 0x8000
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
internal enum SoapAttributeType
|
||||
{
|
||||
None = 0x0,
|
||||
SchemaType = 0x1,
|
||||
Embedded = 0x2,
|
||||
XmlElement = 0x4,
|
||||
XmlAttribute = 0x8
|
||||
}
|
||||
}
|
11
mcs/class/corlib/corefx/Interop.Libraries.Advapi32.cs
Normal file
11
mcs/class/corlib/corefx/Interop.Libraries.Advapi32.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
// 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.
|
||||
|
||||
internal static partial class Interop
|
||||
{
|
||||
internal static partial class Libraries
|
||||
{
|
||||
internal const string Advapi32 = "advapi32.dll";
|
||||
}
|
||||
}
|
14
mcs/class/corlib/corefx/Registry.cs
Normal file
14
mcs/class/corlib/corefx/Registry.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
// 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 Microsoft.Win32
|
||||
{
|
||||
partial class Registry
|
||||
{
|
||||
[Obsolete("Use PerformanceData instead")]
|
||||
public static readonly RegistryKey DynData = RegistryKey.OpenBaseKey(RegistryHive.DynData, RegistryView.Default);
|
||||
}
|
||||
}
|
@@ -1 +1 @@
|
||||
7d6c3d757b2553412e786d3044d3e3d62c801369
|
||||
2198d9a8d7e614566f4b7cc49859d594b6827bfb
|
@@ -3,4 +3,24 @@ partial class SR
|
||||
public const string ArgumentOutOfRange_ConsoleKey = "Console key values must be between 0 and 255 inclusive.";
|
||||
public const string Arg_InvalidComObjectException = "Attempt has been made to use a COM object that does not have a backing class factory.";
|
||||
public const string Arg_MustBeNullTerminatedString = "The string must be null-terminated.";
|
||||
public const string Arg_InvalidOleVariantTypeException = "Specified OLE variant was invalid.";
|
||||
public const string Arg_SafeArrayRankMismatchException = "Specified array was not of the expected rank.";
|
||||
public const string Arg_SafeArrayTypeMismatchException = "Specified array was not of the expected type.";
|
||||
public const string TypeNotDelegate = "'Type '{0}' is not a delegate type. EventTokenTable may only be used with delegate types.'";
|
||||
public const string InvalidOperationException_ActorGraphCircular = "An Actor must not create a circular reference between itself (or one of its child Actors) and one of its parents.";
|
||||
public const string InvalidOperation_ClaimCannotBeRemoved = "The Claim '{0}' was not able to be removed. It is either not part of this Identity or it is a Claim that is owned by the Principal that contains this Identity. For example, the Principal will own the Claim when creating a GenericPrincipal with roles. The roles will be exposed through the Identity that is passed in the constructor, but not actually owned by the Identity. Similar logic exists for a RolePrincipal.";
|
||||
public const string PlatformNotSupported_Serialization = "This instance contains state that cannot be serialized and deserialized on this platform.";
|
||||
public const string PrivilegeNotHeld_Default = "The process does not possess some privilege required for this operation.";
|
||||
public const string PrivilegeNotHeld_Named = "The process does not possess the '{0}' privilege which is required for this operation.";
|
||||
public const string CountdownEvent_Decrement_BelowZero = "CountdownEvent_Decrement_BelowZero";
|
||||
public const string CountdownEvent_Increment_AlreadyZero = "CountdownEvent_Increment_AlreadyZero";
|
||||
public const string CountdownEvent_Increment_AlreadyMax = "CountdownEvent_Increment_AlreadyMax";
|
||||
public const string ArrayWithOffsetOverflow = "ArrayWithOffsetOverflow";
|
||||
public const string Arg_NotIsomorphic = "Arg_NotIsomorphic";
|
||||
public const string StructArrayTooLarge = "StructArrayTooLarge";
|
||||
public const string IO_DriveNotFound = "IO_DriveNotFound";
|
||||
public const string Argument_MustSupplyParent = "Argument_MustSupplyParent";
|
||||
public const string Argument_MemberAndArray = "Argument_MemberAndArray";
|
||||
public const string Argument_MustSupplyContainer = "Argument_MustSupplyContainer";
|
||||
public const string Serialization_NoID = "Serialization_NoID";
|
||||
}
|
Reference in New Issue
Block a user