Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- HandlerFactoryCache.cs
- CompositeDataBoundControl.cs
- relpropertyhelper.cs
- RefreshEventArgs.cs
- BinHexEncoder.cs
- InvalidOperationException.cs
- SQLByteStorage.cs
- WpfXamlType.cs
- AuthenticationConfig.cs
- PageContentCollection.cs
- XhtmlBasicControlAdapter.cs
- VariableExpressionConverter.cs
- CopyNamespacesAction.cs
- CalloutQueueItem.cs
- EntityContainer.cs
- FontDriver.cs
- ListViewTableCell.cs
- SweepDirectionValidation.cs
- safelink.cs
- FormViewInsertEventArgs.cs
- NetNamedPipeSecurity.cs
- InputReport.cs
- DiagnosticEventProvider.cs
- WindowsBrush.cs
- RadialGradientBrush.cs
- WeakReferenceList.cs
- Monitor.cs
- HWStack.cs
- XMLDiffLoader.cs
- VisualState.cs
- GeneralTransformGroup.cs
- ThicknessAnimation.cs
- CallbackValidatorAttribute.cs
- altserialization.cs
- AnnotationDocumentPaginator.cs
- RemoteCryptoDecryptRequest.cs
- ACE.cs
- AdornerPresentationContext.cs
- AppSettingsExpressionEditor.cs
- ContentDisposition.cs
- SQLBinary.cs
- MouseOverProperty.cs
- SoapServerMethod.cs
- DataGridViewColumnConverter.cs
- SizeChangedEventArgs.cs
- PropertyRef.cs
- EditableRegion.cs
- FontStyleConverter.cs
- DataGridViewCellCancelEventArgs.cs
- MarkupExtensionParser.cs
- CodeTypeDelegate.cs
- ServiceProviders.cs
- ObservableCollection.cs
- ControlPaint.cs
- SafeEventLogWriteHandle.cs
- IssuanceLicense.cs
- CounterCreationDataCollection.cs
- UserControl.cs
- ClipboardData.cs
- Simplifier.cs
- StyleSheet.cs
- XmlToDatasetMap.cs
- DelegateSerializationHolder.cs
- XmlUrlResolver.cs
- ConfigXmlAttribute.cs
- TextParagraphProperties.cs
- DataSourceExpression.cs
- PermissionSet.cs
- HorizontalAlignConverter.cs
- DecoderFallbackWithFailureFlag.cs
- SmiContext.cs
- Bind.cs
- IgnoreDeviceFilterElement.cs
- CleanUpVirtualizedItemEventArgs.cs
- ArgumentException.cs
- VisualTarget.cs
- WorkflowView.cs
- XmlSerializerAssemblyAttribute.cs
- TextBox.cs
- HtmlControl.cs
- OleDbRowUpdatedEvent.cs
- RuleValidation.cs
- UntrustedRecipientException.cs
- Completion.cs
- VisualStyleElement.cs
- ConfigurationSectionGroup.cs
- XamlFilter.cs
- Model3D.cs
- CopyOnWriteList.cs
- CngProperty.cs
- odbcmetadatafactory.cs
- WorkflowServiceHostFactory.cs
- ProxyWebPart.cs
- HtmlTitle.cs
- xdrvalidator.cs
- RelationshipSet.cs
- ListViewGroup.cs
- DataServiceResponse.cs
- ZipIORawDataFileBlock.cs
- CharConverter.cs