Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- ProcessModelInfo.cs
- HtmlAnchor.cs
- SamlSecurityToken.cs
- TabPanel.cs
- Timer.cs
- SimplePropertyEntry.cs
- Pens.cs
- GeneralTransform3DCollection.cs
- CqlParser.cs
- URLBuilder.cs
- SqlInfoMessageEvent.cs
- EncodingInfo.cs
- TileBrush.cs
- PropertyKey.cs
- CompoundFileStreamReference.cs
- GraphicsContext.cs
- NativeMethods.cs
- IISMapPath.cs
- PinnedBufferMemoryStream.cs
- PersonalizationEntry.cs
- Ray3DHitTestResult.cs
- Journal.cs
- CustomCredentialPolicy.cs
- SvcFileManager.cs
- ProxyHelper.cs
- ValueUtilsSmi.cs
- CommandConverter.cs
- LocalizationCodeDomSerializer.cs
- DictionaryKeyPropertyAttribute.cs
- TextTreeDeleteContentUndoUnit.cs
- SQLInt64Storage.cs
- IntPtr.cs
- TaiwanLunisolarCalendar.cs
- X509Certificate2.cs
- ScriptingJsonSerializationSection.cs
- TextAutomationPeer.cs
- WriteableBitmap.cs
- ConfigurationManager.cs
- DataBoundControlAdapter.cs
- DetailsView.cs
- ComponentConverter.cs
- ControlParameter.cs
- MultiSelector.cs
- CodeThrowExceptionStatement.cs
- CompilationUtil.cs
- ServicePoint.cs
- RegistryPermission.cs
- TypeSystem.cs
- CallbackTimeoutsBehavior.cs
- XmlSchemaAppInfo.cs
- XhtmlBasicPanelAdapter.cs
- linebase.cs
- Executor.cs
- TableLayoutPanelResizeGlyph.cs
- DragDeltaEventArgs.cs
- StrongNameIdentityPermission.cs
- Delegate.cs
- SelectedDatesCollection.cs
- ConnectionPointGlyph.cs
- DelegatingStream.cs
- SchemaImporterExtension.cs
- RectIndependentAnimationStorage.cs
- ObjectDataSource.cs
- CharConverter.cs
- SqlServices.cs
- FormatSettings.cs
- WebReferencesBuildProvider.cs
- ParseNumbers.cs
- ImmutableCollection.cs
- TaskHelper.cs
- AmbientLight.cs
- TreeChangeInfo.cs
- HtmlInputSubmit.cs
- TabletCollection.cs
- ExtendedProtectionPolicyElement.cs
- XmlWrappingReader.cs
- CompModSwitches.cs
- Privilege.cs
- PropertyInformationCollection.cs
- StringToken.cs
- InputQueueChannel.cs
- AngleUtil.cs
- DateTimeConstantAttribute.cs
- DeferredTextReference.cs
- SqlBulkCopy.cs
- DataGridViewMethods.cs
- AutomationProperties.cs
- PropertyMapper.cs
- TableStyle.cs
- SubclassTypeValidator.cs
- securitycriticaldataClass.cs
- Int32Animation.cs
- RawStylusActions.cs
- ServerValidateEventArgs.cs
- UnauthorizedWebPart.cs
- HostedTcpTransportManager.cs
- XD.cs
- DesignBindingValueUIHandler.cs
- SemanticBasicElement.cs
- ContentValidator.cs