Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / System / Data / OleDb / PropertyIDSet.cs / 1 / PropertyIDSet.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- using System; using System.Data; using System.Data.Common; using System.Data.ProviderBase; using System.Diagnostics; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using System.Security; using System.Security.Permissions; namespace System.Data.OleDb { internal sealed class PropertyIDSet : DbBuffer { static private readonly int PropertyIDSetAndValueSize = ODB.SizeOf_tagDBPROPIDSET + ADP.PtrSize; // sizeof(tagDBPROPIDSET) + sizeof(int) static private readonly int PropertyIDSetSize = ODB.SizeOf_tagDBPROPIDSET; private int _count; // the PropertyID is stored at the end of the tagDBPROPIDSET structure // this way only a single memory allocation is required instead of two internal PropertyIDSet(Guid propertySet, int propertyID) : base(PropertyIDSetAndValueSize) { _count = 1; // rgPropertyIDs references where that PropertyID is stored // depending on IntPtr.Size, tagDBPROPIDSET is either 24 or 28 bytes long IntPtr ptr = ADP.IntPtrOffset(base.handle, PropertyIDSetSize); Marshal.WriteIntPtr(base.handle, 0, ptr); Marshal.WriteInt32(base.handle, ADP.PtrSize, /*propertyid count*/1); ptr = ADP.IntPtrOffset(base.handle, ODB.OffsetOf_tagDBPROPIDSET_PropertySet); Marshal.StructureToPtr(propertySet, ptr, false/*deleteold*/); // write the propertyID at the same offset Marshal.WriteInt32(base.handle, PropertyIDSetSize, propertyID); } // no propertyIDs, just the propertyset guids internal PropertyIDSet(Guid[] propertySets) : base(PropertyIDSetSize * propertySets.Length) { _count = propertySets.Length; for(int i = 0; i < propertySets.Length; ++i) { IntPtr ptr = ADP.IntPtrOffset(base.handle, (i * PropertyIDSetSize) + ODB.OffsetOf_tagDBPROPIDSET_PropertySet); Marshal.StructureToPtr(propertySets[i], ptr, false/*deleteold*/); } } internal int Count { get { return _count; } } } } // 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
- ToolStripArrowRenderEventArgs.cs
- ITextView.cs
- DataPagerCommandEventArgs.cs
- SynchronizationContext.cs
- EnumerableRowCollection.cs
- PLINQETWProvider.cs
- OutputCacheSettingsSection.cs
- SoapSchemaImporter.cs
- ViewBase.cs
- XmlEnumAttribute.cs
- MsmqEncryptionAlgorithm.cs
- RuntimeWrappedException.cs
- JsonServiceDocumentSerializer.cs
- AndMessageFilter.cs
- AutomationPropertyInfo.cs
- PixelShader.cs
- BufferModeSettings.cs
- XmlSchemaSubstitutionGroup.cs
- Line.cs
- ClientSideQueueItem.cs
- AlphaSortedEnumConverter.cs
- ObjectDataSourceEventArgs.cs
- TextDecoration.cs
- CanonicalFormWriter.cs
- CatalogPartDesigner.cs
- XmlSchemaSubstitutionGroup.cs
- SafeNativeMemoryHandle.cs
- FontStretchConverter.cs
- Intellisense.cs
- base64Transforms.cs
- XmlEncodedRawTextWriter.cs
- XmlObjectSerializerReadContext.cs
- Menu.cs
- ConfigurationSettings.cs
- HttpModuleActionCollection.cs
- OleDbConnectionInternal.cs
- ParagraphVisual.cs
- ProfileSection.cs
- CompilationUnit.cs
- SectionXmlInfo.cs
- CellTreeSimplifier.cs
- Message.cs
- HitTestWithGeometryDrawingContextWalker.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- InputMethod.cs
- SqlReorderer.cs
- IdnElement.cs
- DefaultExpression.cs
- WindowsSpinner.cs
- TextTreeUndoUnit.cs
- ProfileGroupSettingsCollection.cs
- GeneralTransform3D.cs
- WindowsPen.cs
- HostExecutionContextManager.cs
- HwndSourceParameters.cs
- XsdDateTime.cs
- AutomationProperties.cs
- ApplicationServiceHelper.cs
- TextBoxBase.cs
- TimeEnumHelper.cs
- RemoteCryptoSignHashRequest.cs
- GridItem.cs
- WindowsHyperlink.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- StrokeCollectionConverter.cs
- TailCallAnalyzer.cs
- ContentDefinition.cs
- SelectionItemProviderWrapper.cs
- SqlStatistics.cs
- ProxyHwnd.cs
- SevenBitStream.cs
- LookupBindingPropertiesAttribute.cs
- MaterialGroup.cs
- HorizontalAlignConverter.cs
- Imaging.cs
- ImageButton.cs
- AvTrace.cs
- TraceUtils.cs
- DrawingServices.cs
- XmlCharacterData.cs
- ContactManager.cs
- CatalogPartChrome.cs
- PartialToken.cs
- CachingHintValidation.cs
- COM2TypeInfoProcessor.cs
- SqlClientWrapperSmiStreamChars.cs
- SEHException.cs
- ToolTipAutomationPeer.cs
- Point.cs
- WebBrowser.cs
- WebConfigurationManager.cs
- XmlQueryCardinality.cs
- X500Name.cs
- BitmapSizeOptions.cs
- SafeFileMappingHandle.cs
- TransformValueSerializer.cs
- ObjectDataSourceEventArgs.cs
- HostingEnvironmentWrapper.cs
- Ipv6Element.cs
- DocumentPageView.cs