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
- SystemResourceKey.cs
- RegexRunner.cs
- VirtualPathUtility.cs
- Separator.cs
- ImageCodecInfoPrivate.cs
- DataFormat.cs
- DashStyles.cs
- WebServiceHost.cs
- CustomDictionarySources.cs
- COM2ExtendedUITypeEditor.cs
- IntAverageAggregationOperator.cs
- SizeLimitedCache.cs
- TypefaceCollection.cs
- RootBrowserWindowAutomationPeer.cs
- VideoDrawing.cs
- XmlAtomicValue.cs
- UIElement3DAutomationPeer.cs
- CompiledQueryCacheEntry.cs
- FreezableCollection.cs
- UserNameSecurityToken.cs
- RNGCryptoServiceProvider.cs
- MenuRendererStandards.cs
- SharedUtils.cs
- TextEditor.cs
- FormViewDeleteEventArgs.cs
- GridEntryCollection.cs
- Asn1Utilities.cs
- WebPartChrome.cs
- RSACryptoServiceProvider.cs
- XmlILConstructAnalyzer.cs
- XmlAttributeCollection.cs
- DomNameTable.cs
- Paragraph.cs
- GraphicsContext.cs
- InfoCardSymmetricAlgorithm.cs
- EntitySqlQueryState.cs
- SecurityAlgorithmSuite.cs
- TiffBitmapDecoder.cs
- DataControlPagerLinkButton.cs
- Section.cs
- Rect3D.cs
- OleAutBinder.cs
- KoreanCalendar.cs
- RelationshipNavigation.cs
- DNS.cs
- DocumentApplication.cs
- WinInet.cs
- ConstrainedDataObject.cs
- RoleManagerModule.cs
- ServiceDeploymentInfo.cs
- WebServiceTypeData.cs
- LocatorPart.cs
- NamespaceExpr.cs
- MethodRental.cs
- VBIdentifierNameEditor.cs
- PriorityQueue.cs
- LocatorGroup.cs
- UriSection.cs
- Content.cs
- ServiceOperation.cs
- DependencyProperty.cs
- HGlobalSafeHandle.cs
- XmlSerializationReader.cs
- RoleGroupCollection.cs
- IndexedString.cs
- BitmapEffectInputData.cs
- ManualResetEventSlim.cs
- OpCellTreeNode.cs
- ControlCachePolicy.cs
- WindowsButton.cs
- TypeSource.cs
- ConsumerConnectionPointCollection.cs
- Base64Encoding.cs
- PhysicalAddress.cs
- TogglePattern.cs
- SerializerWriterEventHandlers.cs
- ComponentChangingEvent.cs
- PopupRootAutomationPeer.cs
- CompilerGeneratedAttribute.cs
- Tuple.cs
- CustomValidator.cs
- TransformValueSerializer.cs
- Select.cs
- StrokeCollection.cs
- DataGridViewLayoutData.cs
- ProgressiveCrcCalculatingStream.cs
- XmlValidatingReaderImpl.cs
- StartUpEventArgs.cs
- ResolveCompletedEventArgs.cs
- StorageComplexTypeMapping.cs
- DirectionalLight.cs
- FieldAccessException.cs
- XmlTypeMapping.cs
- ClonableStack.cs
- SupportingTokenAuthenticatorSpecification.cs
- TracePayload.cs
- DataColumnMapping.cs
- ASCIIEncoding.cs
- ScriptingSectionGroup.cs
- ProviderBase.cs