Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- SetterBase.cs
- Constants.cs
- Parser.cs
- XmlFormatWriterGenerator.cs
- ModuleElement.cs
- HostSecurityManager.cs
- IfAction.cs
- StackSpiller.Generated.cs
- AddressHeaderCollectionElement.cs
- DataGridCommandEventArgs.cs
- Transform3D.cs
- JulianCalendar.cs
- UiaCoreApi.cs
- ConsoleCancelEventArgs.cs
- DocumentEventArgs.cs
- WhitespaceRuleReader.cs
- HtmlForm.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- CompilationUtil.cs
- SafeArrayRankMismatchException.cs
- IntegerValidatorAttribute.cs
- IUnknownConstantAttribute.cs
- Encoder.cs
- ErrorHandlingAcceptor.cs
- SerializationUtilities.cs
- SafeNativeMethods.cs
- CompilationUtil.cs
- X509SecurityTokenProvider.cs
- HtmlInputFile.cs
- SizeF.cs
- RequestBringIntoViewEventArgs.cs
- Int16Converter.cs
- BamlTreeUpdater.cs
- FontDriver.cs
- JsonEnumDataContract.cs
- entityreference_tresulttype.cs
- StateRuntime.cs
- RayMeshGeometry3DHitTestResult.cs
- PanelStyle.cs
- WebPartConnectionsCancelVerb.cs
- SiteMapNode.cs
- PnrpPermission.cs
- FileUtil.cs
- SizeFConverter.cs
- EventProviderWriter.cs
- XmlSchemaNotation.cs
- SqlWorkflowInstanceStore.cs
- DataColumnSelectionConverter.cs
- WindowVisualStateTracker.cs
- SqlMethodTransformer.cs
- ExpressionDumper.cs
- ToolBarButton.cs
- SQLInt32.cs
- ListBoxItemAutomationPeer.cs
- ConnectionPoolManager.cs
- WebBaseEventKeyComparer.cs
- SortDescriptionCollection.cs
- NullRuntimeConfig.cs
- PeerServiceMessageContracts.cs
- RtType.cs
- MetaModel.cs
- IDQuery.cs
- XmlSignatureProperties.cs
- ToolboxItem.cs
- cache.cs
- Variable.cs
- UnsafeMethods.cs
- DecimalConstantAttribute.cs
- KeyValuePairs.cs
- ApplicationTrust.cs
- clipboard.cs
- KeyBinding.cs
- FolderBrowserDialog.cs
- DataListCommandEventArgs.cs
- EventHandlerList.cs
- DataSysAttribute.cs
- ToolBarPanel.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- OutOfProcStateClientManager.cs
- InvokeBinder.cs
- SerializationEventsCache.cs
- SspiSecurityToken.cs
- RelatedImageListAttribute.cs
- FileAuthorizationModule.cs
- ECDiffieHellman.cs
- TypographyProperties.cs
- WebPartTracker.cs
- TreeNodeStyleCollection.cs
- ApplicationFileParser.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- WebHeaderCollection.cs
- ScriptingJsonSerializationSection.cs
- ContourSegment.cs
- DrawListViewItemEventArgs.cs
- SiteMapDataSourceView.cs
- XmlNodeReader.cs
- WebPartConnectionsDisconnectVerb.cs
- StringUtil.cs
- ExtendedPropertyDescriptor.cs
- SynchronizingStream.cs