Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / OleDb / PropertyIDSet.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MessageQueueConverter.cs
- TcpChannelListener.cs
- TextReader.cs
- TreeViewEvent.cs
- TextBounds.cs
- GridViewPageEventArgs.cs
- Token.cs
- DisableDpiAwarenessAttribute.cs
- XmlDocumentSerializer.cs
- PeerResolverSettings.cs
- HttpsTransportBindingElement.cs
- ILGenerator.cs
- DataGridViewUtilities.cs
- selecteditemcollection.cs
- SQLBytes.cs
- CacheEntry.cs
- RegexWorker.cs
- SecurityHelper.cs
- LostFocusEventManager.cs
- DbException.cs
- ListViewCancelEventArgs.cs
- GenericEnumerator.cs
- WorkflowInstanceExtensionCollection.cs
- MatcherBuilder.cs
- DataKeyCollection.cs
- KeyboardNavigation.cs
- ContentHostHelper.cs
- DataGridViewToolTip.cs
- SchemaContext.cs
- CodeAttributeArgumentCollection.cs
- WebPartConnectionsEventArgs.cs
- ObjectConverter.cs
- NegotiateStream.cs
- DefaultValueConverter.cs
- ParallelTimeline.cs
- Matrix.cs
- ListViewCommandEventArgs.cs
- DLinqDataModelProvider.cs
- DiagnosticEventProvider.cs
- OdbcPermission.cs
- OLEDB_Enum.cs
- WebPartMenu.cs
- DataPointer.cs
- SQLRoleProvider.cs
- DataSourceCollectionBase.cs
- NodeLabelEditEvent.cs
- HtmlInputFile.cs
- processwaithandle.cs
- HttpRequestBase.cs
- TextLineBreak.cs
- _SslSessionsCache.cs
- RectAnimationUsingKeyFrames.cs
- TemplatePagerField.cs
- SpecialFolderEnumConverter.cs
- RefExpr.cs
- ScrollViewerAutomationPeer.cs
- SoapIgnoreAttribute.cs
- XmlSchemaGroup.cs
- DeviceSpecificDialogCachedState.cs
- BeginEvent.cs
- WindowsProgressbar.cs
- Attributes.cs
- LinqDataSourceHelper.cs
- SqlNamer.cs
- ArithmeticException.cs
- IndexerNameAttribute.cs
- EntitySqlQueryBuilder.cs
- SectionInformation.cs
- JavaScriptObjectDeserializer.cs
- HashJoinQueryOperatorEnumerator.cs
- RadioButtonFlatAdapter.cs
- FrameworkContentElement.cs
- CompressStream.cs
- DesignerActionItem.cs
- ResizeGrip.cs
- StaticExtensionConverter.cs
- Attributes.cs
- MissingMethodException.cs
- FamilyTypefaceCollection.cs
- ObjectTag.cs
- OrthographicCamera.cs
- jithelpers.cs
- WmlMobileTextWriter.cs
- Cursor.cs
- TransformedBitmap.cs
- CacheRequest.cs
- PersonalizationAdministration.cs
- XsltOutput.cs
- Transform3DGroup.cs
- CursorInteropHelper.cs
- Converter.cs
- DebugController.cs
- UdpDiscoveryEndpointElement.cs
- DefaultBinder.cs
- ThreadAbortException.cs
- Style.cs
- CheckoutException.cs
- Scheduling.cs
- MergeLocalizationDirectives.cs
- DataGridViewCellConverter.cs