Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //[....] //[....] //----------------------------------------------------------------------------- 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
- Positioning.cs
- PolicyManager.cs
- ExpressionPrefixAttribute.cs
- OdbcParameter.cs
- DefaultAssemblyResolver.cs
- LayoutManager.cs
- GroupByQueryOperator.cs
- Span.cs
- SerializationException.cs
- WebBrowser.cs
- MembershipValidatePasswordEventArgs.cs
- ToolboxItemCollection.cs
- ChangeNode.cs
- LockCookie.cs
- XamlSerializerUtil.cs
- ModifierKeysConverter.cs
- PartialList.cs
- DataGridViewBand.cs
- ObjectMemberMapping.cs
- securitycriticaldata.cs
- VerificationException.cs
- HtmlTextArea.cs
- WindowsPen.cs
- FunctionDetailsReader.cs
- ChangeTracker.cs
- UnregisterInfo.cs
- NameValuePair.cs
- XPathNodeIterator.cs
- DesignerMetadata.cs
- ContainerAction.cs
- _WebProxyDataBuilder.cs
- StreamReader.cs
- StrokeCollection2.cs
- LocationUpdates.cs
- TextTreeObjectNode.cs
- DBConnectionString.cs
- PerformanceCountersElement.cs
- MessageBodyMemberAttribute.cs
- BitArray.cs
- TemplateBindingExtensionConverter.cs
- ApplicationSecurityInfo.cs
- IncomingWebRequestContext.cs
- HtmlHistory.cs
- ConfigDefinitionUpdates.cs
- ListenerElementsCollection.cs
- IncrementalHitTester.cs
- ToolTipAutomationPeer.cs
- ComponentResourceKey.cs
- GeneralTransform2DTo3DTo2D.cs
- ValidatingPropertiesEventArgs.cs
- NamespaceEmitter.cs
- TileModeValidation.cs
- EnumerableCollectionView.cs
- TextBoxView.cs
- ReadOnlyDictionary.cs
- PropertyMetadata.cs
- CompositeKey.cs
- EventProviderWriter.cs
- FrameworkContentElement.cs
- XmlAutoDetectWriter.cs
- ImageCodecInfoPrivate.cs
- QueryCursorEventArgs.cs
- ADMembershipUser.cs
- SqlWebEventProvider.cs
- FormClosedEvent.cs
- SingleObjectCollection.cs
- cookie.cs
- XmlDocumentSurrogate.cs
- SuppressIldasmAttribute.cs
- SettingsPropertyValueCollection.cs
- InvalidateEvent.cs
- BlurBitmapEffect.cs
- PreviewPrintController.cs
- FileUtil.cs
- ToolStripDropDownItem.cs
- Calendar.cs
- Pointer.cs
- SqlDataSource.cs
- TransactionValidationBehavior.cs
- PassportAuthentication.cs
- RayHitTestParameters.cs
- QilUnary.cs
- OdbcRowUpdatingEvent.cs
- Header.cs
- SystemResourceHost.cs
- AnnotationResourceChangedEventArgs.cs
- UnitySerializationHolder.cs
- StylusPoint.cs
- StringValidator.cs
- TextServicesManager.cs
- OwnerDrawPropertyBag.cs
- ConfigsHelper.cs
- IIS7UserPrincipal.cs
- AutomationAttributeInfo.cs
- DataGridViewDataConnection.cs
- LOSFormatter.cs
- WindowsGraphicsCacheManager.cs
- ExceptionHandlers.cs
- BaseHashHelper.cs
- AsyncPostBackErrorEventArgs.cs