Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / 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 KusumaV 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. // // // // Description: Helper object implementing IEnumUnknown for enumerating controls // // Source copied from AxContainer.cs // // History // 04/17/05 KusumaV 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartConnectionCollection.cs
- MasterPage.cs
- BuildProviderAppliesToAttribute.cs
- SqlUtil.cs
- CompilerScopeManager.cs
- ScaleTransform3D.cs
- SessionStateContainer.cs
- BulletedListEventArgs.cs
- DesignObjectWrapper.cs
- Rectangle.cs
- CachedFontFamily.cs
- EdmError.cs
- ObjectCloneHelper.cs
- MenuItem.cs
- TextRange.cs
- DesignerSerializationManager.cs
- Processor.cs
- MasterPageCodeDomTreeGenerator.cs
- XmlUtilWriter.cs
- DeviceSpecificDesigner.cs
- DirectoryInfo.cs
- DataFormats.cs
- DataIdProcessor.cs
- StringInfo.cs
- StructuralType.cs
- DiscoveryVersion.cs
- ValueType.cs
- AnnotationResourceCollection.cs
- DbConnectionPoolOptions.cs
- SrgsSubset.cs
- ControlUtil.cs
- ListViewPagedDataSource.cs
- Mutex.cs
- HttpHandlerAction.cs
- TextClipboardData.cs
- WebPartVerbCollection.cs
- ReadWriteObjectLock.cs
- _SslSessionsCache.cs
- SqlSupersetValidator.cs
- SQLByte.cs
- WorkingDirectoryEditor.cs
- FormatterServices.cs
- TdsValueSetter.cs
- HelpHtmlBuilder.cs
- SafeRegistryHandle.cs
- TemplateLookupAction.cs
- BatchWriter.cs
- KeyedHashAlgorithm.cs
- EntityDataSourceWizardForm.cs
- QueryOperatorEnumerator.cs
- LogRestartAreaEnumerator.cs
- LinqDataSourceView.cs
- CompositeScriptReferenceEventArgs.cs
- DbgCompiler.cs
- MemberAccessException.cs
- Environment.cs
- StreamGeometryContext.cs
- ActivityCodeGenerator.cs
- ELinqQueryState.cs
- WindowsGraphicsCacheManager.cs
- AxWrapperGen.cs
- UIPropertyMetadata.cs
- ElementNotAvailableException.cs
- ExpressionNormalizer.cs
- DataGridViewElement.cs
- DeleteStoreRequest.cs
- HtmlTitle.cs
- DependencyStoreSurrogate.cs
- ComEventsMethod.cs
- FilterRepeater.cs
- DataSourceXmlElementAttribute.cs
- PrivacyNoticeElement.cs
- SizeConverter.cs
- TextServicesCompartmentEventSink.cs
- ExpressionBuilderCollection.cs
- SqlAliasesReferenced.cs
- ApplicationServicesHostFactory.cs
- oledbmetadatacollectionnames.cs
- MappingMetadataHelper.cs
- XmlSchemaSimpleTypeRestriction.cs
- SystemIcons.cs
- CodeTypeDeclarationCollection.cs
- DesignerDataParameter.cs
- EntityDataSourceQueryBuilder.cs
- UnsafeNativeMethods.cs
- SrgsElement.cs
- ThicknessKeyFrameCollection.cs
- DataSetMappper.cs
- CodeComment.cs
- CorrelationService.cs
- GridView.cs
- TypeConverterAttribute.cs
- VirtualPathProvider.cs
- MouseOverProperty.cs
- OrderedDictionaryStateHelper.cs
- CryptoApi.cs
- Main.cs
- HttpApplicationFactory.cs
- ReferenceEqualityComparer.cs
- RuleSetCollection.cs