Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.

Commit a182ea8

Browse files
author
John Kordich
committed
Adding new headers and LICENSE
1 parent fafc91e commit a182ea8

181 files changed

Lines changed: 1732 additions & 288 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/Microsoft.Management.Infrastructure/AssemblyInfo.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
**==============================================================================
3+
**
4+
** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE
5+
** for license information.
6+
**
7+
**==============================================================================
8+
*/
19
using System.Reflection;
210
using System.Resources;
311
using System.Runtime.CompilerServices;
@@ -22,4 +30,4 @@
2230
[assembly: InternalsVisibleTo("Microsoft.Management.Infrastructure.Tests")]
2331
#else
2432
[assembly: InternalsVisibleTo("Microsoft.Management.Infrastructure.Tests,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
25-
#endif
33+
#endif

src/Microsoft.Management.Infrastructure/CimClass.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
**==============================================================================
3+
**
4+
** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE
5+
** for license information.
6+
**
7+
**==============================================================================
8+
*/
19

210

311
using Microsoft.Management.Infrastructure.Generic;
@@ -224,4 +232,4 @@ public override string ToString()
224232
this.CimSystemProperties.ClassName);
225233
}
226234
}
227-
}
235+
}

src/Microsoft.Management.Infrastructure/CimConverter.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-

1+
/*
2+
**==============================================================================
3+
**
4+
** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE
5+
** for license information.
6+
**
7+
**==============================================================================
8+
*/
9+
210

311
using System;
412
using System.Collections;
@@ -314,4 +322,4 @@ internal static CimType GetCimTypeFromDotNetValueOrThrowAnException(object dotNe
314322
return cimType;
315323
}
316324
}
317-
}
325+
}

src/Microsoft.Management.Infrastructure/CimException.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-

1+
/*
2+
**==============================================================================
3+
**
4+
** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE
5+
** for license information.
6+
**
7+
**==============================================================================
8+
*/
9+
210

311
using Microsoft.Management.Infrastructure.Internal;
412
using Microsoft.Management.Infrastructure.Native;
@@ -341,4 +349,4 @@ internal static CimException GetExceptionIfMiResultFailure(MI_Result result, str
341349

342350
#endregion Static helper methods for translating an MiResult into an exception
343351
}
344-
}
352+
}

src/Microsoft.Management.Infrastructure/CimFlags.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-

1+
/*
2+
**==============================================================================
3+
**
4+
** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE
5+
** for license information.
6+
**
7+
**==============================================================================
8+
*/
9+
210

311
using Microsoft.Management.Infrastructure.Native;
412
using System;
@@ -59,4 +67,4 @@ public enum CimSubscriptionDeliveryType : int
5967
Push = (int)MI_SubscriptionDeliveryType.MI_SubscriptionDeliveryType_Push,
6068
Pull = (int)MI_SubscriptionDeliveryType.MI_SubscriptionDeliveryType_Pull,
6169
}
62-
}
70+
}

src/Microsoft.Management.Infrastructure/CimInstance.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-

1+
/*
2+
**==============================================================================
3+
**
4+
** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE
5+
** for license information.
6+
**
7+
**==============================================================================
8+
*/
9+
210

311
using System;
412
using System.Collections;
@@ -556,4 +564,4 @@ public override string ToString()
556564
return toStringValue;
557565
}
558566
}
559-
}
567+
}

src/Microsoft.Management.Infrastructure/CimMethodDeclaration.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
**==============================================================================
3+
**
4+
** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE
5+
** for license information.
6+
**
7+
**==============================================================================
8+
*/
19

210

311
using Microsoft.Management.Infrastructure.Generic;
@@ -39,4 +47,4 @@ public override string ToString()
3947
return this.Name;
4048
}
4149
}
42-
}
50+
}

src/Microsoft.Management.Infrastructure/CimMethodParameter.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-

1+
/*
2+
**==============================================================================
3+
**
4+
** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE
5+
** for license information.
6+
**
7+
**==============================================================================
8+
*/
9+
210

311
using Microsoft.Management.Infrastructure.Internal;
412
using Microsoft.Management.Infrastructure.Internal.Data;
@@ -78,4 +86,4 @@ public override string ToString()
7886
return Helpers.ToStringFromNameAndValue(this.Name, this.Value);
7987
}
8088
}
81-
}
89+
}

src/Microsoft.Management.Infrastructure/CimMethodParameterDeclaration.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
**==============================================================================
3+
**
4+
** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE
5+
** for license information.
6+
**
7+
**==============================================================================
8+
*/
19

210

311
using Microsoft.Management.Infrastructure.Generic;
@@ -36,4 +44,4 @@ internal CimMethodParameterDeclaration()
3644
/// </summary>
3745
public abstract string ReferenceClassName { get; }
3846
}
39-
}
47+
}

src/Microsoft.Management.Infrastructure/CimMethodParametersCollection.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-

1+
/*
2+
**==============================================================================
3+
**
4+
** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE
5+
** for license information.
6+
**
7+
**==============================================================================
8+
*/
9+
210

311
using Microsoft.Management.Infrastructure.Generic;
412
using Microsoft.Management.Infrastructure.Internal.Data;
@@ -148,4 +156,4 @@ internal void AssertNotDisposed()
148156

149157
#endregion IDisposable Members
150158
}
151-
}
159+
}

0 commit comments

Comments
 (0)