Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / PropertyItem.cs / 1305376 / PropertyItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Imaging { using System.Runtime.InteropServices; using System; using System.Drawing; // sdkinc\imaging.h ////// /// Encapsulates a metadata property to be /// included in an image file. /// public sealed class PropertyItem { int id; int len; short type; byte[] value; internal PropertyItem() { } ////// /// Represents the ID of the property. /// public int Id { get { return id; } set { id = value; } } ////// /// Represents the length of the property. /// public int Len { get { return len; } set { len = value; } } ////// /// Represents the type of the property. /// public short Type { get { return type; } set { type = value; } } ////// /// Contains the property value. /// public byte[] Value { get { return this.value; } set { this.value = value; } } } } // 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
- UnknownBitmapDecoder.cs
- WindowsTreeView.cs
- GetIndexBinder.cs
- PreservationFileReader.cs
- XmlNamespaceMapping.cs
- IisTraceWebEventProvider.cs
- ActionMessageFilterTable.cs
- AutoResizedEvent.cs
- DependencyProperty.cs
- ReferentialConstraintRoleElement.cs
- SerializationUtilities.cs
- log.cs
- DefaultSection.cs
- PrintControllerWithStatusDialog.cs
- Line.cs
- TextElementEnumerator.cs
- ClientApiGenerator.cs
- DocumentViewerHelper.cs
- DockAndAnchorLayout.cs
- CommandManager.cs
- ResXResourceWriter.cs
- HttpModuleActionCollection.cs
- AggregateNode.cs
- NavigationPropertyAccessor.cs
- PackageDigitalSignature.cs
- StandardCommands.cs
- XmlReflectionImporter.cs
- SEHException.cs
- _Win32.cs
- MimeReflector.cs
- ClientSettings.cs
- ToolStripDropDownMenu.cs
- ProgressBarRenderer.cs
- ConfigXmlCDataSection.cs
- ExpandCollapsePattern.cs
- XmlResolver.cs
- SocketElement.cs
- ManipulationDevice.cs
- ClassHandlersStore.cs
- WorkflowHostingResponseContext.cs
- basenumberconverter.cs
- MouseGestureConverter.cs
- ImageCodecInfo.cs
- BrowserDefinition.cs
- ADRoleFactoryConfiguration.cs
- FactoryGenerator.cs
- ObfuscationAttribute.cs
- SchemaTableOptionalColumn.cs
- Popup.cs
- BindingWorker.cs
- WebBrowserNavigatingEventHandler.cs
- ActivityContext.cs
- SqlServices.cs
- Point3D.cs
- IIS7WorkerRequest.cs
- FormsIdentity.cs
- FieldDescriptor.cs
- XsltLibrary.cs
- KnownColorTable.cs
- SqlUserDefinedTypeAttribute.cs
- WebPartHelpVerb.cs
- IPGlobalProperties.cs
- MoveSizeWinEventHandler.cs
- IntegrationExceptionEventArgs.cs
- Processor.cs
- Decimal.cs
- CompositeDataBoundControl.cs
- JsonObjectDataContract.cs
- InkCanvasSelection.cs
- ConfigurationCollectionAttribute.cs
- RelativeSource.cs
- RowToParametersTransformer.cs
- XmlMemberMapping.cs
- RuntimeCompatibilityAttribute.cs
- MemberListBinding.cs
- SQLBinaryStorage.cs
- DocumentPageHost.cs
- Cursors.cs
- Scanner.cs
- X509InitiatorCertificateServiceElement.cs
- ChannelReliableSession.cs
- MsmqIntegrationProcessProtocolHandler.cs
- Utils.cs
- DataServiceQueryOfT.cs
- Overlapped.cs
- Touch.cs
- AuthenticationConfig.cs
- CodeAccessPermission.cs
- SqlCommandSet.cs
- AmbientProperties.cs
- ProfileSettingsCollection.cs
- XmlAttributeAttribute.cs
- EntityChangedParams.cs
- Nullable.cs
- XmlHierarchicalEnumerable.cs
- ImpersonateTokenRef.cs
- xsdvalidator.cs
- HttpChannelFactory.cs
- TextSelection.cs
- TagNameToTypeMapper.cs