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
- oledbmetadatacolumnnames.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- OpCellTreeNode.cs
- WebDisplayNameAttribute.cs
- HttpPostedFile.cs
- SelectedDatesCollection.cs
- XamlGridLengthSerializer.cs
- GridViewColumnCollectionChangedEventArgs.cs
- DbConnectionStringCommon.cs
- TextServicesDisplayAttribute.cs
- ValidatorCollection.cs
- DateTimeFormatInfo.cs
- NumericUpDownAcceleration.cs
- FixedStringLookup.cs
- CodeEntryPointMethod.cs
- TextDecorationLocationValidation.cs
- SEHException.cs
- CryptographicAttribute.cs
- XsdBuilder.cs
- CopyEncoder.cs
- BigInt.cs
- MsmqOutputChannel.cs
- TypeNameHelper.cs
- PageCache.cs
- DialogResultConverter.cs
- WindowsSpinner.cs
- CustomErrorsSection.cs
- AccessibleObject.cs
- DataStreamFromComStream.cs
- VectorConverter.cs
- ServiceDescriptionSerializer.cs
- SequenceDesignerAccessibleObject.cs
- AesManaged.cs
- DependencyStoreSurrogate.cs
- ZoneIdentityPermission.cs
- ComponentConverter.cs
- XmlUnspecifiedAttribute.cs
- MsmqBindingFilter.cs
- BuildResult.cs
- AnnouncementSendsAsyncResult.cs
- Stopwatch.cs
- SingleResultAttribute.cs
- ControlCachePolicy.cs
- FileUtil.cs
- DataColumnMappingCollection.cs
- SimpleExpression.cs
- HttpsTransportElement.cs
- PrivateFontCollection.cs
- HyperLinkField.cs
- LocalizationCodeDomSerializer.cs
- TypeGeneratedEventArgs.cs
- XmlAutoDetectWriter.cs
- EmulateRecognizeCompletedEventArgs.cs
- DataStreams.cs
- CrossAppDomainChannel.cs
- DataObjectFieldAttribute.cs
- CodeEntryPointMethod.cs
- HyperLink.cs
- NavigatorInput.cs
- CodeCatchClause.cs
- XmlUTF8TextReader.cs
- EditorPartCollection.cs
- ProfileServiceManager.cs
- DelayedRegex.cs
- PropertyInformation.cs
- DictionaryEntry.cs
- GridErrorDlg.cs
- QueueProcessor.cs
- UrlRoutingModule.cs
- StubHelpers.cs
- TemplateField.cs
- JumpTask.cs
- LessThan.cs
- SafeCertificateStore.cs
- PrePostDescendentsWalker.cs
- PointLightBase.cs
- ExpressionPrinter.cs
- AsyncPostBackErrorEventArgs.cs
- CodeAssignStatement.cs
- BitmapEncoder.cs
- LassoHelper.cs
- ConnectionPoint.cs
- EntryWrittenEventArgs.cs
- RolePrincipal.cs
- ValueHandle.cs
- DateTimeParse.cs
- XmlSchemaExternal.cs
- DataSourceXmlSerializationAttribute.cs
- UnwrappedTypesXmlSerializerManager.cs
- ISessionStateStore.cs
- IncomingWebResponseContext.cs
- Mouse.cs
- MemberDescriptor.cs
- WeakHashtable.cs
- WebBodyFormatMessageProperty.cs
- ArrayExtension.cs
- MenuItem.cs
- RangeValuePatternIdentifiers.cs
- ObjectStateFormatter.cs
- Pair.cs