Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CommonUI / System / Drawing / Advanced / PropertyItem.cs / 2 / 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. //------------------------------------------------------------------------------ //// 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
- GridViewCancelEditEventArgs.cs
- DataServiceBehavior.cs
- SiteMapPathDesigner.cs
- ColumnPropertiesGroup.cs
- LinqDataSourceSelectEventArgs.cs
- SchemaDeclBase.cs
- AttributeCollection.cs
- ValidationPropertyAttribute.cs
- WebException.cs
- SR.cs
- WsiProfilesElementCollection.cs
- ReaderWriterLock.cs
- CodeAttributeArgumentCollection.cs
- QuaternionRotation3D.cs
- CodePageEncoding.cs
- DataGridTable.cs
- MemoryStream.cs
- RowToFieldTransformer.cs
- formatter.cs
- BlockCollection.cs
- PageAction.cs
- Shape.cs
- JournalEntryStack.cs
- SizeLimitedCache.cs
- HttpCacheParams.cs
- BindingsCollection.cs
- Exception.cs
- ImageList.cs
- DesignerDataTable.cs
- PermissionSetTriple.cs
- WebPart.cs
- XamlFigureLengthSerializer.cs
- CompareValidator.cs
- RowUpdatingEventArgs.cs
- XamlSerializer.cs
- Authorization.cs
- DataSetSchema.cs
- ProviderUtil.cs
- unsafenativemethodstextservices.cs
- FrameworkRichTextComposition.cs
- LogStore.cs
- WebColorConverter.cs
- HtmlContainerControl.cs
- PartialClassGenerationTaskInternal.cs
- OpCellTreeNode.cs
- ContractReference.cs
- SafeHandles.cs
- SqlParameter.cs
- TargetControlTypeCache.cs
- TemplateBindingExtensionConverter.cs
- SchemaImporter.cs
- Code.cs
- ToolStripContainer.cs
- DetailsViewUpdateEventArgs.cs
- FileSystemEventArgs.cs
- CompilerTypeWithParams.cs
- Annotation.cs
- XslNumber.cs
- ControlIdConverter.cs
- ComponentDispatcher.cs
- StructuralCache.cs
- HttpProfileGroupBase.cs
- ServiceDiscoveryBehavior.cs
- Int64AnimationBase.cs
- FactoryRecord.cs
- ToolStripPanelCell.cs
- SqlConnectionPoolGroupProviderInfo.cs
- FormsAuthenticationUser.cs
- PreservationFileReader.cs
- InputMethod.cs
- ZoneLinkButton.cs
- PropertyGeneratedEventArgs.cs
- DataGridTableCollection.cs
- UIPermission.cs
- AppModelKnownContentFactory.cs
- InnerItemCollectionView.cs
- QueryRewriter.cs
- RegexNode.cs
- UriSection.cs
- EditorPartChrome.cs
- Parallel.cs
- AnchorEditor.cs
- BitmapEffectDrawing.cs
- OrderingInfo.cs
- AppDomainCompilerProxy.cs
- Switch.cs
- ColumnPropertiesGroup.cs
- UnsafeNativeMethodsPenimc.cs
- DesignBindingEditor.cs
- ToolStripComboBox.cs
- SystemSounds.cs
- RoleExceptions.cs
- ValidatingReaderNodeData.cs
- DataGridViewButtonCell.cs
- CodeDirectiveCollection.cs
- LineBreak.cs
- FileUtil.cs
- SmiContext.cs
- QueryInterceptorAttribute.cs
- MobileControlDesigner.cs