Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / System.Runtime.DurableInstancing / System / Runtime / ReadOnlyDictionary.cs / 1305376 / ReadOnlyDictionary.cs
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------
namespace System.Runtime
{
using System.Collections;
using System.Collections.Generic;
[Serializable]
class ReadOnlyDictionary : IDictionary
{
IDictionary dictionary;
public ReadOnlyDictionary(IDictionary dictionary)
: this(dictionary, true)
{
}
public ReadOnlyDictionary(IDictionary dictionary, bool makeCopy)
{
if (makeCopy)
{
this.dictionary = new Dictionary(dictionary);
}
else
{
this.dictionary = dictionary;
}
}
public int Count
{
get { return this.dictionary.Count; }
}
public bool IsReadOnly
{
get { return true; }
}
public ICollection Keys
{
get { return this.dictionary.Keys; }
}
public ICollection Values
{
get { return this.dictionary.Values; }
}
public TValue this[TKey key]
{
get
{
return this.dictionary[key];
}
set
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
}
public static IDictionary Create(IDictionary dictionary)
{
if (dictionary.IsReadOnly)
{
return dictionary;
}
else
{
return new ReadOnlyDictionary(dictionary);
}
}
Exception CreateReadOnlyException()
{
return new InvalidOperationException(SRCore.DictionaryIsReadOnly);
}
public void Add(TKey key, TValue value)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public void Add(KeyValuePair item)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public void Clear()
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public bool Contains(KeyValuePair item)
{
return this.dictionary.Contains(item);
}
public bool ContainsKey(TKey key)
{
return this.dictionary.ContainsKey(key);
}
public void CopyTo(KeyValuePair[] array, int arrayIndex)
{
this.dictionary.CopyTo(array, arrayIndex);
}
public IEnumerator> GetEnumerator()
{
return this.dictionary.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return this.GetEnumerator();
}
public bool Remove(TKey key)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public bool Remove(KeyValuePair item)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public bool TryGetValue(TKey key, out TValue value)
{
return this.dictionary.TryGetValue(key, out value);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------
namespace System.Runtime
{
using System.Collections;
using System.Collections.Generic;
[Serializable]
class ReadOnlyDictionary : IDictionary
{
IDictionary dictionary;
public ReadOnlyDictionary(IDictionary dictionary)
: this(dictionary, true)
{
}
public ReadOnlyDictionary(IDictionary dictionary, bool makeCopy)
{
if (makeCopy)
{
this.dictionary = new Dictionary(dictionary);
}
else
{
this.dictionary = dictionary;
}
}
public int Count
{
get { return this.dictionary.Count; }
}
public bool IsReadOnly
{
get { return true; }
}
public ICollection Keys
{
get { return this.dictionary.Keys; }
}
public ICollection Values
{
get { return this.dictionary.Values; }
}
public TValue this[TKey key]
{
get
{
return this.dictionary[key];
}
set
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
}
public static IDictionary Create(IDictionary dictionary)
{
if (dictionary.IsReadOnly)
{
return dictionary;
}
else
{
return new ReadOnlyDictionary(dictionary);
}
}
Exception CreateReadOnlyException()
{
return new InvalidOperationException(SRCore.DictionaryIsReadOnly);
}
public void Add(TKey key, TValue value)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public void Add(KeyValuePair item)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public void Clear()
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public bool Contains(KeyValuePair item)
{
return this.dictionary.Contains(item);
}
public bool ContainsKey(TKey key)
{
return this.dictionary.ContainsKey(key);
}
public void CopyTo(KeyValuePair[] array, int arrayIndex)
{
this.dictionary.CopyTo(array, arrayIndex);
}
public IEnumerator> GetEnumerator()
{
return this.dictionary.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return this.GetEnumerator();
}
public bool Remove(TKey key)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public bool Remove(KeyValuePair item)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public bool TryGetValue(TKey key, out TValue value)
{
return this.dictionary.TryGetValue(key, out value);
}
}
}
// 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
- MediaElement.cs
- MediaScriptCommandRoutedEventArgs.cs
- _BufferOffsetSize.cs
- SQLMoney.cs
- BadImageFormatException.cs
- MailBnfHelper.cs
- InvalidPropValue.cs
- EntityTemplateUserControl.cs
- MethodToken.cs
- BinaryKeyIdentifierClause.cs
- ConsoleKeyInfo.cs
- PassportAuthentication.cs
- WebConfigurationHost.cs
- TypeUnloadedException.cs
- XmlMtomReader.cs
- RuleSet.cs
- GeneralTransformCollection.cs
- GridSplitterAutomationPeer.cs
- DummyDataSource.cs
- OrderByExpression.cs
- HebrewNumber.cs
- ParsedAttributeCollection.cs
- FixedSOMTableCell.cs
- CustomErrorsSectionWrapper.cs
- CodeCommentStatementCollection.cs
- FrameworkReadOnlyPropertyMetadata.cs
- StringSource.cs
- XmlChildNodes.cs
- Rotation3DAnimationUsingKeyFrames.cs
- HttpRawResponse.cs
- ApplyTemplatesAction.cs
- SecurityKeyUsage.cs
- MemberProjectionIndex.cs
- sqlmetadatafactory.cs
- BamlMapTable.cs
- DiagnosticTraceSource.cs
- UrlMappingsSection.cs
- AttributeProviderAttribute.cs
- Keywords.cs
- OracleEncoding.cs
- BaseResourcesBuildProvider.cs
- AuthenticatingEventArgs.cs
- BufferModesCollection.cs
- sqlpipe.cs
- CatalogZoneDesigner.cs
- GridProviderWrapper.cs
- PeekCompletedEventArgs.cs
- TaiwanLunisolarCalendar.cs
- HttpsChannelListener.cs
- DataGridViewCellStyleBuilderDialog.cs
- OnOperation.cs
- EpmSyndicationContentSerializer.cs
- IArgumentProvider.cs
- WriteableBitmap.cs
- AnnotationDocumentPaginator.cs
- StartUpEventArgs.cs
- BehaviorEditorPart.cs
- HtmlInputHidden.cs
- WinEventTracker.cs
- ADMembershipProvider.cs
- EntityModelSchemaGenerator.cs
- MetafileHeader.cs
- RedirectionProxy.cs
- mediaeventargs.cs
- DataGridViewHitTestInfo.cs
- MailHeaderInfo.cs
- TableRow.cs
- Header.cs
- WindowsToolbarAsMenu.cs
- MsmqDiagnostics.cs
- Events.cs
- UpdatableWrapper.cs
- TextShapeableCharacters.cs
- Library.cs
- TimeEnumHelper.cs
- WindowsListViewGroupSubsetLink.cs
- SchemaCollectionPreprocessor.cs
- OdbcCommand.cs
- HtmlWindowCollection.cs
- LockedHandleGlyph.cs
- BamlLocalizer.cs
- InstanceKey.cs
- SoapServerMessage.cs
- Win32Native.cs
- SafeProcessHandle.cs
- EdmSchemaError.cs
- MimePart.cs
- ColumnMap.cs
- Win32MouseDevice.cs
- RecordsAffectedEventArgs.cs
- Serialization.cs
- Brush.cs
- ClientTargetCollection.cs
- DoWorkEventArgs.cs
- ConfigurationSection.cs
- MouseCaptureWithinProperty.cs
- _UriTypeConverter.cs
- ListenerElementsCollection.cs
- FullTextBreakpoint.cs
- DesigntimeLicenseContext.cs