Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- MemberInfoSerializationHolder.cs
- DaylightTime.cs
- VideoDrawing.cs
- PropertyInfoSet.cs
- Identifier.cs
- MsdtcClusterUtils.cs
- SpotLight.cs
- ListViewDeleteEventArgs.cs
- UIAgentAsyncBeginRequest.cs
- SQLDateTime.cs
- TypeRefElement.cs
- GraphicsPathIterator.cs
- LinearGradientBrush.cs
- Environment.cs
- webclient.cs
- QuotaThrottle.cs
- RequestCache.cs
- ResponseStream.cs
- RawStylusInputCustomDataList.cs
- SuppressMessageAttribute.cs
- behaviorssection.cs
- _ListenerRequestStream.cs
- OutputChannelBinder.cs
- CoTaskMemHandle.cs
- RewritingProcessor.cs
- ProfileManager.cs
- MobileListItemCollection.cs
- StylusCollection.cs
- BitmapEffectInputData.cs
- FtpWebRequest.cs
- UpWmlPageAdapter.cs
- Line.cs
- TagMapCollection.cs
- BoolExpressionVisitors.cs
- DateRangeEvent.cs
- GlyphTypeface.cs
- RenamedEventArgs.cs
- WebPermission.cs
- Package.cs
- SQLRoleProvider.cs
- Process.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- DelegateHelpers.Generated.cs
- login.cs
- EdmProviderManifest.cs
- WebPartEventArgs.cs
- WebPartCancelEventArgs.cs
- BindToObject.cs
- WindowsMenu.cs
- HttpsChannelListener.cs
- OdbcStatementHandle.cs
- CodeSnippetTypeMember.cs
- basecomparevalidator.cs
- AttributeCollection.cs
- RectangleHotSpot.cs
- WebColorConverter.cs
- StylusEditingBehavior.cs
- BamlCollectionHolder.cs
- HtmlInputCheckBox.cs
- SegmentInfo.cs
- FrameworkRichTextComposition.cs
- RijndaelManaged.cs
- WebConfigurationFileMap.cs
- CutCopyPasteHelper.cs
- LinkTarget.cs
- SolidColorBrush.cs
- Roles.cs
- ItemContainerPattern.cs
- BinaryUtilClasses.cs
- ActivityDelegate.cs
- ToolStripRendererSwitcher.cs
- Substitution.cs
- ToolStripGripRenderEventArgs.cs
- Int16AnimationBase.cs
- WaitHandle.cs
- FormsAuthenticationEventArgs.cs
- XmlSubtreeReader.cs
- CustomAssemblyResolver.cs
- SessionSwitchEventArgs.cs
- StorageScalarPropertyMapping.cs
- RtType.cs
- TextUtf8RawTextWriter.cs
- XPathArrayIterator.cs
- StorageBasedPackageProperties.cs
- SourceFileInfo.cs
- EntityConnectionStringBuilderItem.cs
- DBDataPermissionAttribute.cs
- IdlingCommunicationPool.cs
- SnapshotChangeTrackingStrategy.cs
- XmlSubtreeReader.cs
- ElementsClipboardData.cs
- TableLayoutSettings.cs
- TriggerCollection.cs
- TreeNodeBindingCollection.cs
- LZCodec.cs
- Rotation3DKeyFrameCollection.cs
- BmpBitmapEncoder.cs
- NetDataContractSerializer.cs
- ConfigurationPermission.cs
- GridView.cs