Skip to content

Commit ec178a5

Browse files
committed
Update Reference Sources to .NET Framework 4.6
1 parent 7470633 commit ec178a5

File tree

3,992 files changed

+67244
-26697
lines changed

Some content is hidden

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

3,992 files changed

+67244
-26697
lines changed

SMDiagnostics/System/ServiceModel/Diagnostics/EventLogCategory.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
namespace System.ServiceModel.Diagnostics
66
{
7-
//
8-
7+
// FUTURE: This class is kept so that 4.0 Extended SKU runs fine on 4.5 Client. Will remove this in the future.
8+
// Order is important here. The order must match the order of strings in ..\EventLog\EventLog.mc
99
[Obsolete("This has been replaced by System.Runtime.Diagnostics.EventLogCategory")]
1010
enum EventLogCategory : ushort
1111
{
@@ -25,4 +25,4 @@ enum EventLogCategory : ushort
2525
ListenerAdapter
2626
}
2727

28-
}
28+
}

SMDiagnostics/System/ServiceModel/Diagnostics/EventLogEventId.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
namespace System.ServiceModel.Diagnostics
66
{
7-
//
8-
7+
// FUTURE: This class is kept so that 4.0 Extended SKU runs fine on 4.5 Client. Will remove this in the future.
8+
// Order is important here. The order must match the order of strings in ..\EventLog\EventLog.mc
99
[Obsolete("This has been replaced by System.Runtime.Diagnostics.EventLogEventId")]
1010
enum EventLogEventId : uint
1111
{

SMDiagnostics/System/ServiceModel/Diagnostics/NativeMethods.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ static class NativeMethods
1919
[SecurityCritical]
2020
internal static extern SafeEventLogWriteHandle RegisterEventSource(string uncServerName, string sourceName);
2121
}
22-
}
22+
}

SMDiagnostics/System/ServiceModel/Diagnostics/TraceSourceKind.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ enum TraceSourceKind
99
DiagnosticTraceSource,
1010
PiiTraceSource
1111
}
12-
}
12+
}

SMDiagnostics/System/ServiceModel/Diagnostics/Utility.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ internal Utility(ExceptionUtility exceptionUtility)
2828
[SuppressMessage(FxCop.Category.Security, FxCop.Rule.TransparentMethodsMustNotReferenceCriticalCode)] // we got APTCA approval with no requirement to fix this transparency warning
2929
internal static void CloseInvalidOutSafeHandle(SafeHandle handle)
3030
{
31-
// Workaround for 64-bit CLR bug VSWhidbey 546830 - sometimes invalid SafeHandles come back null.
31+
// Workaround for 64-bit CLR
3232
if (handle != null)
3333
{
3434
#pragma warning disable 618

System.Activities.DurableInstancing/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
// by using the '*' as shown below:
2828
// Friend assemblies
2929

30-
// Partial Trust :
30+
// Partial Trust :

System.Activities.DurableInstancing/System/Activities/DurableInstancing/InstanceCompletionAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ public enum InstanceCompletionAction
99
DeleteNothing = 0,
1010
DeleteAll
1111
};
12-
}
12+
}

System.Activities.DurableInstancing/System/Activities/DurableInstancing/InstanceEncodingOption.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ public enum InstanceEncodingOption
99
None = 0,
1010
GZip
1111
};
12-
}
12+
}

System.Activities.DurableInstancing/System/Activities/DurableInstancing/LoadType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ enum LoadType
1111
LoadByKey = 2,
1212
LoadByInstance = 3
1313
}
14-
}
14+
}

System.Activities.DurableInstancing/System/Activities/DurableInstancing/PrimitiveType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ enum PrimitiveType
3030
XmlQualifiedName,
3131
Unavailable = 99
3232
}
33-
}
33+
}

0 commit comments

Comments
 (0)