Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Reflection / Pointer.cs / 1305376 / Pointer.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //////////////////////////////////////////////////////////////////////////////// // // This is a wrapper class for Pointers // //[....] // // // // namespace System.Reflection { using System; using CultureInfo = System.Globalization.CultureInfo; using System.Runtime.Serialization; using System.Diagnostics.Contracts; [CLSCompliant(false)] [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public sealed class Pointer: ISerializable { unsafe private void* _ptr; private RuntimeType _ptrType; private Pointer() {} [System.Security.SecurityCritical] // auto-generated private unsafe Pointer(SerializationInfo info, StreamingContext context) { _ptr = ((IntPtr)(info.GetValue("_ptr", typeof(IntPtr)))).ToPointer(); _ptrType = (RuntimeType)info.GetValue("_ptrType", typeof(RuntimeType)); } // This method will box an pointer. We save both the // value and the type so we can access it from the native code // during an Invoke. [System.Security.SecurityCritical] // auto-generated public static unsafe Object Box(void *ptr,Type type) { if (type == null) throw new ArgumentNullException("type"); if (!type.IsPointer) throw new ArgumentException(Environment.GetResourceString("Arg_MustBePointer"),"ptr"); Contract.EndContractBlock(); RuntimeType rt = type as RuntimeType; if (rt == null) throw new ArgumentException(Environment.GetResourceString("Arg_MustBePointer"), "ptr"); Pointer x = new Pointer(); x._ptr = ptr; x._ptrType = rt; return x; } // Returned the stored pointer. [System.Security.SecurityCritical] // auto-generated public static unsafe void* Unbox(Object ptr) { if (!(ptr is Pointer)) throw new ArgumentException(Environment.GetResourceString("Arg_MustBePointer"),"ptr"); return ((Pointer)ptr)._ptr; } internal RuntimeType GetPointerType() { return _ptrType; } [System.Security.SecurityCritical] // auto-generated internal unsafe Object GetPointerValue() { return (IntPtr)_ptr; } #if FEATURE_SERIALIZATION [System.Security.SecurityCritical] unsafe void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { info.AddValue("_ptr", new IntPtr(_ptr)); info.AddValue("_ptrType", _ptrType); } #endif } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //////////////////////////////////////////////////////////////////////////////// // // This is a wrapper class for Pointers // //[....] // // // // namespace System.Reflection { using System; using CultureInfo = System.Globalization.CultureInfo; using System.Runtime.Serialization; using System.Diagnostics.Contracts; [CLSCompliant(false)] [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public sealed class Pointer: ISerializable { unsafe private void* _ptr; private RuntimeType _ptrType; private Pointer() {} [System.Security.SecurityCritical] // auto-generated private unsafe Pointer(SerializationInfo info, StreamingContext context) { _ptr = ((IntPtr)(info.GetValue("_ptr", typeof(IntPtr)))).ToPointer(); _ptrType = (RuntimeType)info.GetValue("_ptrType", typeof(RuntimeType)); } // This method will box an pointer. We save both the // value and the type so we can access it from the native code // during an Invoke. [System.Security.SecurityCritical] // auto-generated public static unsafe Object Box(void *ptr,Type type) { if (type == null) throw new ArgumentNullException("type"); if (!type.IsPointer) throw new ArgumentException(Environment.GetResourceString("Arg_MustBePointer"),"ptr"); Contract.EndContractBlock(); RuntimeType rt = type as RuntimeType; if (rt == null) throw new ArgumentException(Environment.GetResourceString("Arg_MustBePointer"), "ptr"); Pointer x = new Pointer(); x._ptr = ptr; x._ptrType = rt; return x; } // Returned the stored pointer. [System.Security.SecurityCritical] // auto-generated public static unsafe void* Unbox(Object ptr) { if (!(ptr is Pointer)) throw new ArgumentException(Environment.GetResourceString("Arg_MustBePointer"),"ptr"); return ((Pointer)ptr)._ptr; } internal RuntimeType GetPointerType() { return _ptrType; } [System.Security.SecurityCritical] // auto-generated internal unsafe Object GetPointerValue() { return (IntPtr)_ptr; } #if FEATURE_SERIALIZATION [System.Security.SecurityCritical] unsafe void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { info.AddValue("_ptr", new IntPtr(_ptr)); info.AddValue("_ptrType", _ptrType); } #endif } } // 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
- DataServiceProcessingPipelineEventArgs.cs
- ActionItem.cs
- XmlAutoDetectWriter.cs
- MissingMemberException.cs
- UInt32.cs
- NetDispatcherFaultException.cs
- WebPartsPersonalization.cs
- XmlDataImplementation.cs
- Utils.cs
- ObjectPropertyMapping.cs
- SystemIPGlobalProperties.cs
- CheckBoxStandardAdapter.cs
- DataBinding.cs
- Variable.cs
- Section.cs
- Formatter.cs
- IItemProperties.cs
- TransformerTypeCollection.cs
- ProviderConnectionPoint.cs
- XmlSchemaComplexType.cs
- SoapCommonClasses.cs
- JumpList.cs
- FontStyles.cs
- Currency.cs
- StorageEntityContainerMapping.cs
- ColorTranslator.cs
- WebPartVerbsEventArgs.cs
- LinkedList.cs
- DataTableClearEvent.cs
- SignatureHelper.cs
- Validator.cs
- PeerInvitationResponse.cs
- WebPartZone.cs
- SettingsPropertyValue.cs
- XPathExpr.cs
- EntityCollectionChangedParams.cs
- RenderingEventArgs.cs
- HitTestWithGeometryDrawingContextWalker.cs
- EmptyElement.cs
- ProviderSettings.cs
- TaskFileService.cs
- KnownTypeAttribute.cs
- DesignerImageAdapter.cs
- TypeListConverter.cs
- Label.cs
- MessageDesigner.cs
- XmlSerializerVersionAttribute.cs
- RadioButton.cs
- XmlSchemaAny.cs
- FilterableAttribute.cs
- DllNotFoundException.cs
- StringArrayConverter.cs
- Button.cs
- AuthenticatedStream.cs
- ControlBuilder.cs
- Merger.cs
- Polyline.cs
- ObfuscateAssemblyAttribute.cs
- StrokeCollection.cs
- DbModificationClause.cs
- SurrogateSelector.cs
- Frame.cs
- ValueExpressions.cs
- EventMappingSettingsCollection.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- MultilineStringConverter.cs
- SkipQueryOptionExpression.cs
- RefExpr.cs
- XmlWriterTraceListener.cs
- SqlDependencyUtils.cs
- HybridDictionary.cs
- Clock.cs
- FixedDocument.cs
- DockPanel.cs
- TypeSystem.cs
- TypefaceMetricsCache.cs
- EntityClientCacheKey.cs
- ConfigurationPropertyCollection.cs
- DataTableMapping.cs
- ResourceIDHelper.cs
- DetailsViewModeEventArgs.cs
- COM2AboutBoxPropertyDescriptor.cs
- UnhandledExceptionEventArgs.cs
- ReadWriteObjectLock.cs
- Point.cs
- RequestCacheEntry.cs
- ErrorBehavior.cs
- EventHandlingScope.cs
- AssemblyHash.cs
- SmiEventSink.cs
- FillBehavior.cs
- SendingRequestEventArgs.cs
- DbProviderConfigurationHandler.cs
- NativeMethods.cs
- AppDomainUnloadedException.cs
- XPathNavigatorKeyComparer.cs
- KeyBinding.cs
- _HTTPDateParse.cs
- SafeEventHandle.cs
- MeasureItemEvent.cs