Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / MS / Internal / Controls / EnumUnknown.cs / 1 / EnumUnknown.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // // Description: Helper object implementing IEnumUnknown for enumerating controls // // Source copied from AxContainer.cs // // History // 04/17/05 [....] Created // //----------------------------------------------------------------------------- using System; using System.Collections; using System.Diagnostics; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Security; using MS.Win32; namespace MS.Internal.Controls { #region class EnumUnknown internal class EnumUnknown : UnsafeNativeMethods.IEnumUnknown { private Object[] arr; private int loc; private int size; internal EnumUnknown(Object[] arr) { this.arr = arr; this.loc = 0; this.size = (arr == null) ? 0 : arr.Length; } private EnumUnknown(Object[] arr, int loc) : this(arr) { this.loc = loc; } ////// Critical: Takes arbitrary pointers, writes to memory /// [SecurityCritical] unsafe int UnsafeNativeMethods.IEnumUnknown.Next(int celt, IntPtr rgelt, IntPtr pceltFetched) { if (pceltFetched != IntPtr.Zero) Marshal.WriteInt32(pceltFetched, 0, 0); if (celt < 0) { return NativeMethods.E_INVALIDARG; } int fetched = 0; if (this.loc >= this.size) { fetched = 0; } else { for (; this.loc < this.size && fetched < celt; ++(this.loc)) { if (this.arr[this.loc] != null) { Marshal.WriteIntPtr(rgelt, Marshal.GetIUnknownForObject(this.arr[this.loc])); rgelt = (IntPtr)((long)rgelt + (long)sizeof(IntPtr)); ++fetched; } } } if (pceltFetched != IntPtr.Zero) Marshal.WriteInt32(pceltFetched, 0, fetched); if (fetched != celt) { return (NativeMethods.S_FALSE); } return NativeMethods.S_OK; } int UnsafeNativeMethods.IEnumUnknown.Skip(int celt) { this.loc += celt; if (this.loc >= this.size) { return (NativeMethods.S_FALSE); } return NativeMethods.S_OK; } void UnsafeNativeMethods.IEnumUnknown.Reset() { this.loc = 0; } void UnsafeNativeMethods.IEnumUnknown.Clone(out UnsafeNativeMethods.IEnumUnknown ppenum) { ppenum = new EnumUnknown(this.arr, this.loc); } } #endregion class EnumUnknown } // 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
- DataGridViewHitTestInfo.cs
- ConstraintEnumerator.cs
- FontDifferentiator.cs
- GridViewCellAutomationPeer.cs
- CatalogZoneDesigner.cs
- RTLAwareMessageBox.cs
- SessionPageStateSection.cs
- CommandBinding.cs
- Lease.cs
- SQLDecimalStorage.cs
- DecimalKeyFrameCollection.cs
- SecUtil.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- SmiXetterAccessMap.cs
- ResourceKey.cs
- ObjectDataSourceWizardForm.cs
- DateTimeFormat.cs
- DocumentViewerBase.cs
- SiteMembershipCondition.cs
- ClientBase.cs
- CurrentTimeZone.cs
- ObjectHelper.cs
- ListItemConverter.cs
- WebPartConnectionsDisconnectVerb.cs
- CoreSwitches.cs
- EntitySetBase.cs
- DataGrid.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- IgnoreFileBuildProvider.cs
- DecimalKeyFrameCollection.cs
- AnnotationMap.cs
- HttpApplicationFactory.cs
- ToolStripDropDown.cs
- QueueProcessor.cs
- SystemSounds.cs
- WebDisplayNameAttribute.cs
- XmlTypeMapping.cs
- InstanceNormalEvent.cs
- ImmComposition.cs
- UserInitiatedNavigationPermission.cs
- VerificationAttribute.cs
- GraphicsContext.cs
- Color.cs
- ListBoxItemAutomationPeer.cs
- RadioButtonPopupAdapter.cs
- TaskResultSetter.cs
- TextViewElement.cs
- DesignerVerbCollection.cs
- CopyCodeAction.cs
- NominalTypeEliminator.cs
- ByValueEqualityComparer.cs
- DataBindEngine.cs
- ProtocolsConfiguration.cs
- OleDbCommand.cs
- AssemblyHelper.cs
- ParameterRetriever.cs
- ExpressionConverter.cs
- AttributeQuery.cs
- QueryOperatorEnumerator.cs
- RotateTransform.cs
- Base64Decoder.cs
- XmlReaderDelegator.cs
- PeerCollaborationPermission.cs
- DBPropSet.cs
- BitmapEffectDrawing.cs
- SynchronizedInputPattern.cs
- ValidationEventArgs.cs
- TypeGeneratedEventArgs.cs
- FormsAuthenticationCredentials.cs
- SynchronousSendBindingElement.cs
- QilBinary.cs
- X509ChainPolicy.cs
- UIPermission.cs
- HtmlButton.cs
- AnnotationHighlightLayer.cs
- StickyNoteAnnotations.cs
- ThousandthOfEmRealPoints.cs
- SynchronizationContext.cs
- ProvidersHelper.cs
- SspiHelper.cs
- MetafileHeader.cs
- SplitContainerDesigner.cs
- FrameworkElementAutomationPeer.cs
- XmlTextWriter.cs
- SoapSchemaMember.cs
- ServiceDescriptionSerializer.cs
- TTSVoice.cs
- StringExpressionSet.cs
- Process.cs
- TypeElement.cs
- DataSourceView.cs
- MediaElementAutomationPeer.cs
- OleDbEnumerator.cs
- FontCollection.cs
- ReadonlyMessageFilter.cs
- EndPoint.cs
- AutomationEventArgs.cs
- DataStreamFromComStream.cs
- WeakReadOnlyCollection.cs
- RegistrySecurity.cs