Code:
/ DotNET / DotNET / 8.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
- ViewCellSlot.cs
- WebPartUserCapability.cs
- InfoCardKeyedHashAlgorithm.cs
- cookiecontainer.cs
- ListBase.cs
- PrimitiveDataContract.cs
- HttpModuleActionCollection.cs
- CheckBoxFlatAdapter.cs
- SecurityDescriptor.cs
- PropertyToken.cs
- WebResponse.cs
- XmlSerializerSection.cs
- RestHandlerFactory.cs
- NullableLongMinMaxAggregationOperator.cs
- SiteMapNodeCollection.cs
- InstancePersistenceException.cs
- EdmError.cs
- EndPoint.cs
- Parser.cs
- XmlDataProvider.cs
- ContentPathSegment.cs
- ConfigPathUtility.cs
- ToolStripSeparatorRenderEventArgs.cs
- MultiView.cs
- NamespaceQuery.cs
- ListQueryResults.cs
- FixedSOMTableCell.cs
- ObjectCache.cs
- ProfileBuildProvider.cs
- User.cs
- DesignerCategoryAttribute.cs
- UnhandledExceptionEventArgs.cs
- VerbConverter.cs
- MultiTouchSystemGestureLogic.cs
- FormViewUpdateEventArgs.cs
- IteratorFilter.cs
- FontNamesConverter.cs
- WebPartVerb.cs
- BigInt.cs
- RichTextBoxConstants.cs
- GridToolTip.cs
- OleDbConnection.cs
- HtmlInputFile.cs
- IndependentAnimationStorage.cs
- ContentTextAutomationPeer.cs
- DocumentStream.cs
- ByteAnimationBase.cs
- TdsValueSetter.cs
- TransformationRules.cs
- SizeChangedInfo.cs
- ScriptControl.cs
- PipeException.cs
- DynamicMethod.cs
- EventHandlersStore.cs
- XhtmlBasicLiteralTextAdapter.cs
- MimeTypeMapper.cs
- OleAutBinder.cs
- TypefaceMap.cs
- XmlSchemaExternal.cs
- Oid.cs
- QilParameter.cs
- ValidationSummary.cs
- TextRunCacheImp.cs
- XmlHierarchicalDataSourceView.cs
- _AcceptOverlappedAsyncResult.cs
- WS2007HttpBindingCollectionElement.cs
- ListViewTableRow.cs
- DrawingVisualDrawingContext.cs
- OleDbStruct.cs
- DataServiceQueryProvider.cs
- SemaphoreFullException.cs
- TextDecorationCollection.cs
- FrameworkObject.cs
- _UriTypeConverter.cs
- ComEventsSink.cs
- LinkTarget.cs
- DataGridTextBoxColumn.cs
- SpoolingTaskBase.cs
- MailWriter.cs
- BezierSegment.cs
- XmlMapping.cs
- CheckoutException.cs
- Win32.cs
- Mappings.cs
- Propagator.ExtentPlaceholderCreator.cs
- BufferedStream.cs
- EdmItemCollection.cs
- ConfigsHelper.cs
- CodeGroup.cs
- HttpClientCertificate.cs
- DesignerEditorPartChrome.cs
- FileChangesMonitor.cs
- SequentialOutput.cs
- ParseChildrenAsPropertiesAttribute.cs
- CodeMemberField.cs
- ExpressionPrefixAttribute.cs
- DataGridViewBindingCompleteEventArgs.cs
- InternalResources.cs
- Configuration.cs
- Classification.cs