Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / DATA_BLOB.cs / 1305376 / DATA_BLOB.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Configuration
{
using System.Collections.Specialized;
using System.Runtime.Serialization;
using System.Configuration.Provider;
using System.Xml;
using System.Text;
using System.Runtime.InteropServices;
using Microsoft.Win32;
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
[StructLayout(LayoutKind.Sequential)]
internal struct DATA_BLOB : IDisposable
{
public int cbData;
public IntPtr pbData;
void IDisposable.Dispose()
{
if (pbData != IntPtr.Zero)
{
Marshal.FreeHGlobal(pbData);
pbData = IntPtr.Zero;
}
}
}
}
// 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
- Authorization.cs
- ListBoxItemWrapperAutomationPeer.cs
- FixedStringLookup.cs
- TreeViewHitTestInfo.cs
- SingleSelectRootGridEntry.cs
- EntityModelSchemaGenerator.cs
- DefaultWorkflowLoaderService.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- Container.cs
- FindCriteria11.cs
- NullableIntMinMaxAggregationOperator.cs
- RadioButtonAutomationPeer.cs
- HttpSessionStateWrapper.cs
- InvokePatternIdentifiers.cs
- ByteAnimationUsingKeyFrames.cs
- FrameworkRichTextComposition.cs
- PartialCachingAttribute.cs
- RegexBoyerMoore.cs
- DesignerDataConnection.cs
- SiteMapSection.cs
- RegularExpressionValidator.cs
- CacheOutputQuery.cs
- SamlSecurityTokenAuthenticator.cs
- ProgressChangedEventArgs.cs
- Keywords.cs
- Dynamic.cs
- ObjectSet.cs
- Int16Storage.cs
- DocumentViewerAutomationPeer.cs
- UmAlQuraCalendar.cs
- EntityDataSourceQueryBuilder.cs
- CompilerGeneratedAttribute.cs
- KeyNotFoundException.cs
- Certificate.cs
- SqlStatistics.cs
- ExceptionUtil.cs
- PopupEventArgs.cs
- Win32KeyboardDevice.cs
- UniqueEventHelper.cs
- NameValuePermission.cs
- NativeObjectSecurity.cs
- ColorConvertedBitmapExtension.cs
- WebCategoryAttribute.cs
- DesignerView.xaml.cs
- ScrollItemProviderWrapper.cs
- MetadataSource.cs
- ValidationErrorCollection.cs
- ScriptHandlerFactory.cs
- StylusShape.cs
- StringStorage.cs
- OutOfMemoryException.cs
- SqlIdentifier.cs
- WebPartDescription.cs
- XPathChildIterator.cs
- MessageParameterAttribute.cs
- PartialTrustVisibleAssembliesSection.cs
- ClipboardData.cs
- LocalizationComments.cs
- PropertyMapper.cs
- WebPartConnectionsConfigureVerb.cs
- MouseButtonEventArgs.cs
- AutomationIdentifier.cs
- EntityViewContainer.cs
- WebRequestModuleElementCollection.cs
- SafeThreadHandle.cs
- EmptyCollection.cs
- PrintEvent.cs
- WebBrowserDocumentCompletedEventHandler.cs
- MDIWindowDialog.cs
- Point3DAnimation.cs
- TypeConverter.cs
- ImageMap.cs
- EmptyControlCollection.cs
- AuditLog.cs
- SortKey.cs
- SpecialFolderEnumConverter.cs
- BuilderInfo.cs
- ElapsedEventArgs.cs
- CustomAttributeBuilder.cs
- WebPartConnectVerb.cs
- DirectoryNotFoundException.cs
- QilLoop.cs
- CounterSampleCalculator.cs
- RequestCacheManager.cs
- HiddenFieldPageStatePersister.cs
- SqlException.cs
- BaseDataListActionList.cs
- PackageController.cs
- Setter.cs
- Compiler.cs
- SQLCharsStorage.cs
- SelectionItemPatternIdentifiers.cs
- TileBrush.cs
- OutputScope.cs
- FastEncoder.cs
- TextDecoration.cs
- Style.cs
- controlskin.cs
- login.cs
- Parameter.cs