Imported Upstream version 4.0.0~alpha1

Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
Jo Shields
2015-04-07 09:35:12 +01:00
parent 283343f570
commit 3c1f479b9d
22469 changed files with 2931443 additions and 869343 deletions

View File

@@ -31,9 +31,7 @@ namespace System.Management
{
public enum CimType
{
#if NET_2_0
None = 0,
#endif
SInt16 = 2,
SInt32 = 3,
Real32 = 4,

View File

@@ -34,9 +34,7 @@ namespace System.Management
CSharp,
JScript,
VB,
#if NET_2_0
VJSharp,
Mcpp,
#endif
}
}

View File

@@ -33,9 +33,7 @@ using System.Runtime.Serialization;
namespace System.Management
{
#if NET_2_0
[Serializable]
#endif
[ToolboxItem (true)]
public class ManagementBaseObject : Component, ICloneable, ISerializable
{

View File

@@ -73,7 +73,6 @@ namespace System.Management
throw new NotImplementedException ();
}
#if NET_2_0
[MonoTODO]
protected ManagementClass (SerializationInfo info, StreamingContext context)
{
@@ -85,7 +84,6 @@ namespace System.Management
{
throw new NotImplementedException ();
}
#endif
public StringCollection Derivation {
get {

View File

@@ -40,11 +40,7 @@ namespace System.Management
{
}
#if NET_2_0
protected
#else
public
#endif
ManagementNamedValueCollection (SerializationInfo info, StreamingContext context)
: base (info, context)
{

View File

@@ -34,9 +34,7 @@ using System.Runtime.Serialization;
namespace System.Management
{
#if NET_2_0
[Serializable]
#endif
public class ManagementObject : ManagementBaseObject
{
[MonoTODO]
@@ -75,22 +73,16 @@ namespace System.Management
}
[MonoTODO]
#if NET_2_0
protected
#else
public
#endif
ManagementObject (SerializationInfo info, StreamingContext context)
{
}
#if NET_2_0
[MonoTODO]
protected override void GetObjectData (SerializationInfo info, StreamingContext context)
{
throw new NotImplementedException ();
}
#endif
[MonoTODO]
public override object Clone ()

View File

@@ -31,9 +31,7 @@ namespace System.Management
{
public enum PutType
{
#if NET_2_0
None = 0,
#endif
UpdateOnly = 1,
CreateOnly = 2,
UpdateOrCreate = 3