Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Base / MS / Internal / TraceLevelStore.cs / 2 / TraceLevelStore.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Storage for the "TraceLevel" attached property. // //--------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Diagnostics; namespace MS.Internal { ////// This class stores values for the attached property /// PresentationTraceSources.TraceLevel. /// internal static class TraceLevelStore { #region Constructors // // Constructors // #endregion Constructors #region Internal Methods // // Internal Methods // ////// Reads the attached property TraceLevel from the given element. /// internal static PresentationTraceLevel GetTraceLevel(object element) { PresentationTraceLevel result; if (element == null || _dictionary.Count == 0) { result = PresentationTraceLevel.None; } else { lock (_dictionary) { using (SetLookupKey(element)) { if (!_dictionary.TryGetValue(_lookupKey, out result)) { result = PresentationTraceLevel.None; } } } } return result; } ////// Writes the attached property TraceLevel to the given element. /// internal static void SetTraceLevel(object element, PresentationTraceLevel traceLevel) { if (element == null) return; lock (_dictionary) { Key key = new Key(element); if (traceLevel > PresentationTraceLevel.None) { _dictionary[key] = traceLevel; } else { _dictionary.Remove(key); } } } #endregion Internal Methods #region Private Methods // set the lookup key - IDisposable ensures it gets cleared after // use, so that it doesn't hold a reference to the element static IDisposable SetLookupKey(object element) { _lookupKey.Set(element); return _lookupKeyDisposable; } #endregion Private Methods #region Private Fields // // Private Fields // private static Dictionary_dictionary = new Dictionary (); private static Key _lookupKey; private static LookupKeyDisposable _lookupKeyDisposable = new LookupKeyDisposable(); #endregion Private Fields #region Table Keys // the key for the dictionary: <((element)), hashcode> private struct Key { internal Key(object element) { _element = new WeakReference(element); _hashcode = element.GetHashCode(); } internal void Set(object element) { _element = element; _hashcode = element.GetHashCode(); } internal void Clear() { _element = null; _hashcode = 0; } public override int GetHashCode() { #if DEBUG WeakReference wr = _element as WeakReference; object element = (wr != null) ? wr.Target : _element; if (element != null) { int hashcode = element.GetHashCode(); Debug.Assert(hashcode == _hashcode, "hashcodes disagree"); } #endif return _hashcode; } public override bool Equals(object o) { if (o is Key) { WeakReference wr; Key that = (Key)o; if (this._hashcode != that._hashcode) return false; wr = this._element as WeakReference; object s1 = (wr != null) ? wr.Target : this._element; wr = that._element as WeakReference; object s2 = (wr != null) ? wr.Target : that._element; if (s1!=null && s2!=null) return (s1 == s2); else return (this._element == that._element); } else { return false; } } public static bool operator==(Key key1, Key key2) { return key1.Equals(key2); } public static bool operator!=(Key key1, Key key2) { return !key1.Equals(key2); } object _element; // lookup: direct ref. In table: WeakRef int _hashcode; // cached, in case source is GC'd } private class LookupKeyDisposable : IDisposable { public void Dispose() { TraceLevelStore._lookupKey.Clear(); } } #endregion Table Keys } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- VisualStyleRenderer.cs
- ContentPresenter.cs
- MailSettingsSection.cs
- formatter.cs
- WebResourceUtil.cs
- EdgeModeValidation.cs
- BuildManager.cs
- InkCanvasAutomationPeer.cs
- ContentElement.cs
- LineServicesCallbacks.cs
- AttributeExtensions.cs
- CodeAccessSecurityEngine.cs
- NonVisualControlAttribute.cs
- ZipIOExtraFieldElement.cs
- ParseNumbers.cs
- Propagator.Evaluator.cs
- SqlConnectionFactory.cs
- GC.cs
- AxHostDesigner.cs
- SrgsNameValueTag.cs
- TimelineClockCollection.cs
- EditorBrowsableAttribute.cs
- DetailsViewCommandEventArgs.cs
- FrameworkElement.cs
- EncodedStreamFactory.cs
- CallbackTimeoutsBehavior.cs
- PreparingEnlistment.cs
- XMLSchema.cs
- TargetParameterCountException.cs
- WsatServiceAddress.cs
- HttpHostedTransportConfiguration.cs
- SecurityPolicySection.cs
- ConfigurationPermission.cs
- ObjectDataSourceDisposingEventArgs.cs
- XmlSchemaProviderAttribute.cs
- CodeTypeConstructor.cs
- BmpBitmapEncoder.cs
- InvalidProgramException.cs
- XslCompiledTransform.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- FileVersion.cs
- Roles.cs
- StrokeNodeOperations.cs
- CollectionDataContractAttribute.cs
- ContextStack.cs
- GPRECTF.cs
- EmissiveMaterial.cs
- XXXInfos.cs
- WebResourceUtil.cs
- Site.cs
- Win32.cs
- DynamicMethod.cs
- CacheMemory.cs
- IgnoreDataMemberAttribute.cs
- DependencyObjectValidator.cs
- InsufficientMemoryException.cs
- DataGridViewTextBoxColumn.cs
- HtmlImage.cs
- DataGridViewCellParsingEventArgs.cs
- WebPartExportVerb.cs
- GetMemberBinder.cs
- CodeDefaultValueExpression.cs
- ToolStripHighContrastRenderer.cs
- QilInvokeLateBound.cs
- SqlMethods.cs
- ObjectConverter.cs
- TextStore.cs
- Cursors.cs
- HtmlValidationSummaryAdapter.cs
- PasswordTextContainer.cs
- SnapshotChangeTrackingStrategy.cs
- MessageRpc.cs
- HtmlButton.cs
- TextFormatter.cs
- WebHeaderCollection.cs
- ping.cs
- PathSegment.cs
- Int32Rect.cs
- StoreContentChangedEventArgs.cs
- ColumnReorderedEventArgs.cs
- SafeBitVector32.cs
- ExpressionBuilderCollection.cs
- UTF7Encoding.cs
- HotSpot.cs
- ApplicationFileCodeDomTreeGenerator.cs
- ListBindableAttribute.cs
- WindowsSecurityTokenAuthenticator.cs
- IdentityNotMappedException.cs
- ToolboxComponentsCreatedEventArgs.cs
- FixedSOMTableCell.cs
- DataGridViewCheckBoxCell.cs
- WebBrowserNavigatedEventHandler.cs
- EntityContainerEntitySet.cs
- ACE.cs
- TabControlCancelEvent.cs
- WriteableOnDemandStream.cs
- DoneReceivingAsyncResult.cs
- LiteralTextContainerControlBuilder.cs
- SQLConvert.cs
- Token.cs