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
- GregorianCalendarHelper.cs
- WebBrowserSiteBase.cs
- TextCharacters.cs
- InternalTypeHelper.cs
- BinHexEncoding.cs
- JapaneseLunisolarCalendar.cs
- _RegBlobWebProxyDataBuilder.cs
- HtmlInputHidden.cs
- NaturalLanguageHyphenator.cs
- SizeAnimationUsingKeyFrames.cs
- ExpressionBuilder.cs
- BamlResourceContent.cs
- Track.cs
- CacheAxisQuery.cs
- DiagnosticTraceSource.cs
- Timeline.cs
- DataGridViewRowEventArgs.cs
- DataGridViewToolTip.cs
- DecoderFallback.cs
- EdmType.cs
- ExpressionBuilderCollection.cs
- TextBreakpoint.cs
- WindowsAuthenticationModule.cs
- MessageSecurityOverMsmq.cs
- ObjectHelper.cs
- StackBuilderSink.cs
- CodeThrowExceptionStatement.cs
- RawKeyboardInputReport.cs
- TabPage.cs
- PerfCounters.cs
- PersonalizationStateInfoCollection.cs
- AuthorizationRuleCollection.cs
- WebPartTransformerAttribute.cs
- VisualStyleTypesAndProperties.cs
- NumericUpDown.cs
- ClientTargetSection.cs
- CustomAttributeFormatException.cs
- WebPartZoneBase.cs
- SerializationInfoEnumerator.cs
- ComponentEditorPage.cs
- DbBuffer.cs
- ToggleButton.cs
- Rotation3DKeyFrameCollection.cs
- HwndStylusInputProvider.cs
- TemplatePropertyEntry.cs
- HttpValueCollection.cs
- XmlNodeList.cs
- DescendentsWalker.cs
- altserialization.cs
- ObjectItemCachedAssemblyLoader.cs
- ActionItem.cs
- XmlSchemaObject.cs
- XmlBoundElement.cs
- OpacityConverter.cs
- StdRegProviderWrapper.cs
- EntityReference.cs
- PointUtil.cs
- StringUtil.cs
- TemplateFactory.cs
- CodeMethodInvokeExpression.cs
- QilName.cs
- Signature.cs
- BreakSafeBase.cs
- KeyValuePair.cs
- HostVisual.cs
- DiscoveryDocumentLinksPattern.cs
- XmlStringTable.cs
- Publisher.cs
- MimeParameter.cs
- DrawingState.cs
- TimeoutValidationAttribute.cs
- OuterGlowBitmapEffect.cs
- TextElementEnumerator.cs
- ToolStripSettings.cs
- SerializerWriterEventHandlers.cs
- CollectionViewSource.cs
- AttachmentService.cs
- EdmComplexTypeAttribute.cs
- TabControl.cs
- TripleDESCryptoServiceProvider.cs
- XmlSchemaDatatype.cs
- Win32Exception.cs
- DataTemplateKey.cs
- TrailingSpaceComparer.cs
- MembershipPasswordException.cs
- SQLMembershipProvider.cs
- TextLineResult.cs
- AggregateNode.cs
- UnsafeNativeMethods.cs
- DataGridViewCellCancelEventArgs.cs
- ListViewUpdateEventArgs.cs
- EmptyCollection.cs
- TextDpi.cs
- DetailsViewDeletedEventArgs.cs
- TraceHandlerErrorFormatter.cs
- Msmq.cs
- NamespaceDecl.cs
- MissingFieldException.cs
- CancellationState.cs
- _AutoWebProxyScriptWrapper.cs