Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Runtime / Serialization / Formatters / SerTrace.cs / 1 / SerTrace.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SerTrace ** ** ** Purpose: Routine used for Debugging ** ** ===========================================================*/ namespace System.Runtime.Serialization.Formatters { using System; using System.Runtime.Serialization; using System.Security.Permissions; using System.Reflection; using System.Diagnostics; #if FEATURE_PAL // To turn on tracing, add the following to the per-machine // rotor.ini file, inside the [Rotor] section: // ManagedLogFacility=0x32 // where: #else // To turn on tracing the set registry // HKEY_CURRENT_USER -> Software -> Microsoft -> .NETFramework // new DWORD value ManagedLogFacility 0x32 where #endif // 0x2 is System.Runtime.Serialization // 0x10 is Binary Formatter // 0x20 is Soap Formatter // // Turn on Logging in the jitmgr // remoting Wsdl logging ///[StrongNameIdentityPermissionAttribute(SecurityAction.LinkDemand, PublicKey = "0x" + AssemblyRef.EcmaPublicKeyFull, Name="System.Runtime.Remoting" )] [System.Runtime.InteropServices.ComVisible(true)] public sealed class InternalRM { /// [System.Diagnostics.Conditional("_LOGGING")] public static void InfoSoap(params Object[]messages) { BCLDebug.Trace("SOAP", messages); } //[System.Diagnostics.Conditional("_LOGGING")] /// public static bool SoapCheckEnabled() { return BCLDebug.CheckEnabled("SOAP"); } } /// [StrongNameIdentityPermissionAttribute(SecurityAction.LinkDemand, PublicKey = "0x" + AssemblyRef.MicrosoftPublicKeyFull, Name="System.Runtime.Serialization.Formatters.Soap" )] [System.Runtime.InteropServices.ComVisible(true)] public sealed class InternalST { private InternalST() { } /// [System.Diagnostics.Conditional("_LOGGING")] public static void InfoSoap(params Object[]messages) { BCLDebug.Trace("SOAP", messages); } //[System.Diagnostics.Conditional("_LOGGING")] /// public static bool SoapCheckEnabled() { return BCLDebug.CheckEnabled("Soap"); } /// [System.Diagnostics.Conditional("SER_LOGGING")] public static void Soap(params Object[]messages) { if (!(messages[0] is String)) messages[0] = (messages[0].GetType()).Name+" "; else messages[0] = messages[0]+" "; BCLDebug.Trace("SOAP",messages); } /// [System.Diagnostics.Conditional("_DEBUG")] public static void SoapAssert(bool condition, String message) { BCLDebug.Assert(condition, message); } /// public static void SerializationSetValue(FieldInfo fi, Object target, Object value) { if ( fi == null) throw new ArgumentNullException("fi"); if (target == null) throw new ArgumentNullException("target"); if (value == null) throw new ArgumentNullException("value"); FormatterServices.SerializationSetValue(fi, target, value); } /// public static Assembly LoadAssemblyFromString(String assemblyString) { return FormatterServices.LoadAssemblyFromString(assemblyString); } } internal static class SerTrace { [Conditional("_LOGGING")] internal static void InfoLog(params Object[]messages) { BCLDebug.Trace("BINARY", messages); } [Conditional("SER_LOGGING")] internal static void Log(params Object[]messages) { if (!(messages[0] is String)) messages[0] = (messages[0].GetType()).Name+" "; else messages[0] = messages[0]+" "; BCLDebug.Trace("BINARY",messages); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SerTrace ** ** ** Purpose: Routine used for Debugging ** ** ===========================================================*/ namespace System.Runtime.Serialization.Formatters { using System; using System.Runtime.Serialization; using System.Security.Permissions; using System.Reflection; using System.Diagnostics; #if FEATURE_PAL // To turn on tracing, add the following to the per-machine // rotor.ini file, inside the [Rotor] section: // ManagedLogFacility=0x32 // where: #else // To turn on tracing the set registry // HKEY_CURRENT_USER -> Software -> Microsoft -> .NETFramework // new DWORD value ManagedLogFacility 0x32 where #endif // 0x2 is System.Runtime.Serialization // 0x10 is Binary Formatter // 0x20 is Soap Formatter // // Turn on Logging in the jitmgr // remoting Wsdl logging /// [StrongNameIdentityPermissionAttribute(SecurityAction.LinkDemand, PublicKey = "0x" + AssemblyRef.EcmaPublicKeyFull, Name="System.Runtime.Remoting" )] [System.Runtime.InteropServices.ComVisible(true)] public sealed class InternalRM { /// [System.Diagnostics.Conditional("_LOGGING")] public static void InfoSoap(params Object[]messages) { BCLDebug.Trace("SOAP", messages); } //[System.Diagnostics.Conditional("_LOGGING")] /// public static bool SoapCheckEnabled() { return BCLDebug.CheckEnabled("SOAP"); } } /// [StrongNameIdentityPermissionAttribute(SecurityAction.LinkDemand, PublicKey = "0x" + AssemblyRef.MicrosoftPublicKeyFull, Name="System.Runtime.Serialization.Formatters.Soap" )] [System.Runtime.InteropServices.ComVisible(true)] public sealed class InternalST { private InternalST() { } /// [System.Diagnostics.Conditional("_LOGGING")] public static void InfoSoap(params Object[]messages) { BCLDebug.Trace("SOAP", messages); } //[System.Diagnostics.Conditional("_LOGGING")] /// public static bool SoapCheckEnabled() { return BCLDebug.CheckEnabled("Soap"); } /// [System.Diagnostics.Conditional("SER_LOGGING")] public static void Soap(params Object[]messages) { if (!(messages[0] is String)) messages[0] = (messages[0].GetType()).Name+" "; else messages[0] = messages[0]+" "; BCLDebug.Trace("SOAP",messages); } /// [System.Diagnostics.Conditional("_DEBUG")] public static void SoapAssert(bool condition, String message) { BCLDebug.Assert(condition, message); } /// public static void SerializationSetValue(FieldInfo fi, Object target, Object value) { if ( fi == null) throw new ArgumentNullException("fi"); if (target == null) throw new ArgumentNullException("target"); if (value == null) throw new ArgumentNullException("value"); FormatterServices.SerializationSetValue(fi, target, value); } /// public static Assembly LoadAssemblyFromString(String assemblyString) { return FormatterServices.LoadAssemblyFromString(assemblyString); } } internal static class SerTrace { [Conditional("_LOGGING")] internal static void InfoLog(params Object[]messages) { BCLDebug.Trace("BINARY", messages); } [Conditional("SER_LOGGING")] internal static void Log(params Object[]messages) { if (!(messages[0] is String)) messages[0] = (messages[0].GetType()).Name+" "; else messages[0] = messages[0]+" "; BCLDebug.Trace("BINARY",messages); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RegexCode.cs
- ListViewInsertionMark.cs
- GeometryCombineModeValidation.cs
- HttpRequest.cs
- DesignerDataSchemaClass.cs
- XPathBinder.cs
- Triplet.cs
- ObjectView.cs
- MobileFormsAuthentication.cs
- DataGridSortCommandEventArgs.cs
- DbProviderFactories.cs
- MoveSizeWinEventHandler.cs
- SafeEventLogWriteHandle.cs
- DataSetViewSchema.cs
- DataGridViewControlCollection.cs
- TextWriterTraceListener.cs
- WindowAutomationPeer.cs
- XPathScanner.cs
- IncrementalCompileAnalyzer.cs
- GeneralTransform.cs
- NavigationHelper.cs
- NamespaceQuery.cs
- PartialArray.cs
- MultiPageTextView.cs
- JavaScriptSerializer.cs
- WorkflowServiceOperationListItem.cs
- CodeIndexerExpression.cs
- HitTestFilterBehavior.cs
- ReflectionHelper.cs
- XMLUtil.cs
- SecurityKeyIdentifierClause.cs
- DrawingContext.cs
- MessageCredentialType.cs
- TiffBitmapDecoder.cs
- WpfGeneratedKnownTypes.cs
- TreeViewImageKeyConverter.cs
- StrongNameKeyPair.cs
- SubMenuStyleCollection.cs
- OutputCacheModule.cs
- Matrix3DConverter.cs
- SQLBytes.cs
- DesignerForm.cs
- NameNode.cs
- UrlAuthFailedErrorFormatter.cs
- RecipientIdentity.cs
- CreateRefExpr.cs
- NCryptSafeHandles.cs
- AlignmentXValidation.cs
- TextModifierScope.cs
- EUCJPEncoding.cs
- CompiledRegexRunnerFactory.cs
- HierarchicalDataTemplate.cs
- HiddenFieldPageStatePersister.cs
- InkCanvas.cs
- FlowDocumentFormatter.cs
- BuildManagerHost.cs
- VirtualPathProvider.cs
- MsmqHostedTransportManager.cs
- Camera.cs
- CodePrimitiveExpression.cs
- CancelEventArgs.cs
- XDRSchema.cs
- IInstanceTable.cs
- LogAppendAsyncResult.cs
- NameValueConfigurationCollection.cs
- NumberFunctions.cs
- FontStyle.cs
- CodeTypeOfExpression.cs
- XamlNamespaceHelper.cs
- ErrorStyle.cs
- cookiecontainer.cs
- FixedElement.cs
- CommonGetThemePartSize.cs
- BufferModeSettings.cs
- MenuEventArgs.cs
- ReturnType.cs
- CombinedGeometry.cs
- WaitHandle.cs
- BitmapFrame.cs
- EdmTypeAttribute.cs
- ItemCheckEvent.cs
- RuntimeEnvironment.cs
- Site.cs
- Utils.cs
- UserPreferenceChangedEventArgs.cs
- MessageQueuePermissionEntry.cs
- ProjectedSlot.cs
- WindowsRegion.cs
- DataGridItemEventArgs.cs
- BookmarkNameHelper.cs
- UiaCoreApi.cs
- TableRow.cs
- AtlasWeb.Designer.cs
- CodeCompiler.cs
- WeakEventTable.cs
- GrammarBuilderWildcard.cs
- LookupNode.cs
- PrimitiveDataContract.cs
- DatagridviewDisplayedBandsData.cs
- CodeAssignStatement.cs