Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Wmi / managed / System / Management / ManagementNamedValueCollection.cs / 1305376 / ManagementNamedValueCollection.cs
using System; using System.Collections; using System.Collections.Specialized; using WbemClient_v1; using System.Runtime.Serialization; namespace System.Management { //CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC// ////// //CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC// public class ManagementNamedValueCollection : NameObjectCollectionBase { // Notification of when the content of this collection changes internal event IdentifierChangedEventHandler IdentifierChanged; //Fires IdentifierChanged event private void FireIdentifierChanged() { if (IdentifierChanged != null) IdentifierChanged(this, null); } //default constructor ///Represents a collection of named values /// suitable for use as context information to WMI operations. The /// names are case-insensitive. ////// Initializes a new instance /// of the ///class. /// /// public ManagementNamedValueCollection() { } ///Initializes a new instance of the ///class, which is empty. This is /// the default constructor. /// /// TheInitializes a new instance of the ///class that is serializable /// and uses the specified /// and . to populate with data. /// The destination (see ) for this serialization. protected ManagementNamedValueCollection(SerializationInfo info, StreamingContext context) : base(info, context) { } /// /// internal IWbemContext GetContext() { IWbemContext wbemContext = null; // Only build a context if we have something to put in it if (0 < Count) { int status = (int)ManagementStatus.NoError; try { wbemContext = (IWbemContext) new WbemContext (); foreach (string name in this) { object val = base.BaseGet(name); status = wbemContext.SetValue_ (name, 0, ref val); if ((status & 0x80000000) != 0) { break; } } } catch {} // } return wbemContext; } ///Internal method to return an IWbemContext representation /// of the named value collection. ////// /// The name of the new value. /// The value to be associated with the name. public void Add (string name, object value) { // Remove any old entry try { base.BaseRemove (name); } catch {} base.BaseAdd (name, value); FireIdentifierChanged (); } ///Adds a single-named value to the collection. ////// /// The name of the value to be removed. public void Remove (string name) { base.BaseRemove (name); FireIdentifierChanged (); } ///Removes a single-named value from the collection. /// If the collection does not contain an element with the /// specified name, the collection remains unchanged and no /// exception is thrown. ////// public void RemoveAll () { base.BaseClear (); FireIdentifierChanged (); } ///Removes all entries from the collection. ////// ///Creates a clone of the collection. Individual values /// are cloned. If a value does not support cloning, then a ////// is thrown. /// The new copy of the collection. /// public ManagementNamedValueCollection Clone () { ManagementNamedValueCollection nvc = new ManagementNamedValueCollection(); foreach (string name in this) { // If we can clone the value, do so. Otherwise throw. object val = base.BaseGet (name); if (null != val) { Type valueType = val.GetType (); if (valueType.IsByRef) { try { object clonedValue = ((ICloneable)val).Clone (); nvc.Add (name, clonedValue); } catch { throw new NotSupportedException (); } } else { nvc.Add (name, val); } } else nvc.Add (name, null); } return nvc; } ////// /// The name of the value to be returned. ///Returns the value associated with the specified name from this collection. ////// public object this[string name] { get { return base.BaseGet(name); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Collections; using System.Collections.Specialized; using WbemClient_v1; using System.Runtime.Serialization; namespace System.Management { //CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC// ///An ///containing the /// value of the specified item in this collection. /// //CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC// public class ManagementNamedValueCollection : NameObjectCollectionBase { // Notification of when the content of this collection changes internal event IdentifierChangedEventHandler IdentifierChanged; //Fires IdentifierChanged event private void FireIdentifierChanged() { if (IdentifierChanged != null) IdentifierChanged(this, null); } //default constructor ///Represents a collection of named values /// suitable for use as context information to WMI operations. The /// names are case-insensitive. ////// Initializes a new instance /// of the ///class. /// /// public ManagementNamedValueCollection() { } ///Initializes a new instance of the ///class, which is empty. This is /// the default constructor. /// /// TheInitializes a new instance of the ///class that is serializable /// and uses the specified /// and . to populate with data. /// The destination (see ) for this serialization. protected ManagementNamedValueCollection(SerializationInfo info, StreamingContext context) : base(info, context) { } /// /// internal IWbemContext GetContext() { IWbemContext wbemContext = null; // Only build a context if we have something to put in it if (0 < Count) { int status = (int)ManagementStatus.NoError; try { wbemContext = (IWbemContext) new WbemContext (); foreach (string name in this) { object val = base.BaseGet(name); status = wbemContext.SetValue_ (name, 0, ref val); if ((status & 0x80000000) != 0) { break; } } } catch {} // } return wbemContext; } ///Internal method to return an IWbemContext representation /// of the named value collection. ////// /// The name of the new value. /// The value to be associated with the name. public void Add (string name, object value) { // Remove any old entry try { base.BaseRemove (name); } catch {} base.BaseAdd (name, value); FireIdentifierChanged (); } ///Adds a single-named value to the collection. ////// /// The name of the value to be removed. public void Remove (string name) { base.BaseRemove (name); FireIdentifierChanged (); } ///Removes a single-named value from the collection. /// If the collection does not contain an element with the /// specified name, the collection remains unchanged and no /// exception is thrown. ////// public void RemoveAll () { base.BaseClear (); FireIdentifierChanged (); } ///Removes all entries from the collection. ////// ///Creates a clone of the collection. Individual values /// are cloned. If a value does not support cloning, then a ////// is thrown. /// The new copy of the collection. /// public ManagementNamedValueCollection Clone () { ManagementNamedValueCollection nvc = new ManagementNamedValueCollection(); foreach (string name in this) { // If we can clone the value, do so. Otherwise throw. object val = base.BaseGet (name); if (null != val) { Type valueType = val.GetType (); if (valueType.IsByRef) { try { object clonedValue = ((ICloneable)val).Clone (); nvc.Add (name, clonedValue); } catch { throw new NotSupportedException (); } } else { nvc.Add (name, val); } } else nvc.Add (name, null); } return nvc; } ////// /// The name of the value to be returned. ///Returns the value associated with the specified name from this collection. ////// public object this[string name] { get { return base.BaseGet(name); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.An ///containing the /// value of the specified item in this collection.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RMPermissions.cs
- GridViewUpdateEventArgs.cs
- ISessionStateStore.cs
- ImageCodecInfo.cs
- FrugalMap.cs
- ToolStripItemCollection.cs
- DataGrid.cs
- CheckoutException.cs
- ReferencedCollectionType.cs
- ArraySubsetEnumerator.cs
- FontFamilyIdentifier.cs
- ResourceReferenceExpressionConverter.cs
- propertytag.cs
- RemotingAttributes.cs
- CodeTypeReference.cs
- WebPartEditVerb.cs
- Vector3DCollection.cs
- DbSourceParameterCollection.cs
- ToolStripLabel.cs
- WaitHandleCannotBeOpenedException.cs
- EdmProperty.cs
- BitmapPalettes.cs
- MsmqBindingFilter.cs
- XamlFxTrace.cs
- XmlSchemaElement.cs
- EvidenceBase.cs
- HttpModuleCollection.cs
- SoapFault.cs
- ContentPropertyAttribute.cs
- EditorPartChrome.cs
- Lookup.cs
- SamlAssertion.cs
- DetailsViewDeleteEventArgs.cs
- ValidationErrorCollection.cs
- ReferencedCollectionType.cs
- SqlNodeAnnotations.cs
- Maps.cs
- ToolStripHighContrastRenderer.cs
- PieceDirectory.cs
- TextSelectionHighlightLayer.cs
- TraceProvider.cs
- StringComparer.cs
- FileNotFoundException.cs
- TypeSystem.cs
- wgx_render.cs
- EntityProviderServices.cs
- ExpandSegmentCollection.cs
- IndexerReference.cs
- DefaultPropertyAttribute.cs
- Timer.cs
- CodeDomExtensionMethods.cs
- XpsPackagingException.cs
- Image.cs
- SymmetricKeyWrap.cs
- SqlDataSourceWizardForm.cs
- ParseHttpDate.cs
- ScriptDescriptor.cs
- SocketAddress.cs
- SafeHandle.cs
- DocumentXPathNavigator.cs
- WmfPlaceableFileHeader.cs
- WSSecurityOneDotOneSendSecurityHeader.cs
- RegexMatch.cs
- AvTraceDetails.cs
- TemplateManager.cs
- SafeRightsManagementEnvironmentHandle.cs
- XmlSchemaSimpleContentExtension.cs
- EditorPartCollection.cs
- SqlError.cs
- JournalEntryStack.cs
- TextTreeTextBlock.cs
- Scanner.cs
- CodeArgumentReferenceExpression.cs
- DataSysAttribute.cs
- PageOutputQuality.cs
- CellParagraph.cs
- SmtpCommands.cs
- AstTree.cs
- ContainerVisual.cs
- TraceSection.cs
- XmlSchemaObjectTable.cs
- Int16KeyFrameCollection.cs
- HierarchicalDataSourceControl.cs
- PriorityBinding.cs
- SQLSingle.cs
- Bitmap.cs
- RtfToXamlReader.cs
- DependencyProperty.cs
- ToolStripGrip.cs
- StateMachineWorkflow.cs
- HttpRequestWrapper.cs
- DbConnectionHelper.cs
- PersistChildrenAttribute.cs
- CompositionTarget.cs
- ObjectDataSourceStatusEventArgs.cs
- StylusSystemGestureEventArgs.cs
- SqlStatistics.cs
- X500Name.cs
- BaseParser.cs
- ReadOnlyState.cs