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
- DataGridViewTopRowAccessibleObject.cs
- IndexingContentUnit.cs
- ServiceManagerHandle.cs
- DataList.cs
- HttpCacheVaryByContentEncodings.cs
- sqlpipe.cs
- UntrustedRecipientException.cs
- ScriptHandlerFactory.cs
- ColumnHeaderConverter.cs
- WmpBitmapEncoder.cs
- MultipleViewProviderWrapper.cs
- NativeActivityMetadata.cs
- cookie.cs
- RecognizedWordUnit.cs
- MouseGesture.cs
- QilLoop.cs
- TextChangedEventArgs.cs
- DefaultTextStore.cs
- LayoutEditorPart.cs
- DeviceSpecificDialogCachedState.cs
- TripleDES.cs
- ProxyGenerator.cs
- RecommendedAsConfigurableAttribute.cs
- CalendarModeChangedEventArgs.cs
- IDQuery.cs
- SoapAttributeAttribute.cs
- SystemIPAddressInformation.cs
- FilteredReadOnlyMetadataCollection.cs
- CalendarTable.cs
- VirtualizingPanel.cs
- TdsParameterSetter.cs
- HealthMonitoringSectionHelper.cs
- LinkConverter.cs
- TextTreeObjectNode.cs
- PTManager.cs
- PageEventArgs.cs
- _SSPISessionCache.cs
- PenThreadWorker.cs
- BasicKeyConstraint.cs
- Win32.cs
- CollectionContainer.cs
- WorkflowServiceAttributes.cs
- EncoderNLS.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- FaultHandlingFilter.cs
- BitmapPalettes.cs
- DocumentViewerHelper.cs
- CorrelationManager.cs
- StylusCollection.cs
- DataServices.cs
- MenuAdapter.cs
- PageAdapter.cs
- DataGridTable.cs
- BaseCodePageEncoding.cs
- ActionFrame.cs
- TreeNodeCollection.cs
- PerfProviderCollection.cs
- StreamReader.cs
- MsmqInputChannelBase.cs
- MimeTypePropertyAttribute.cs
- Material.cs
- DataGridRowsPresenter.cs
- ObjectQueryProvider.cs
- MaterialCollection.cs
- SectionRecord.cs
- WaitHandle.cs
- StylusTip.cs
- AdCreatedEventArgs.cs
- XmlAutoDetectWriter.cs
- DesignerAutoFormat.cs
- BindingNavigatorDesigner.cs
- BitmapVisualManager.cs
- VisualStateGroup.cs
- ReadOnlyDictionary.cs
- PropertyPushdownHelper.cs
- ListViewPagedDataSource.cs
- ColorTransformHelper.cs
- ReflectionHelper.cs
- DataTableCollection.cs
- DbgCompiler.cs
- ReferencedType.cs
- XamlStackWriter.cs
- TypeSystemProvider.cs
- CollectionChangeEventArgs.cs
- DetailsViewCommandEventArgs.cs
- MatrixTransform3D.cs
- CompositeScriptReference.cs
- EmissiveMaterial.cs
- Vector3D.cs
- WebPartCatalogAddVerb.cs
- HelpInfo.cs
- WebPartCloseVerb.cs
- SqlMethodTransformer.cs
- TransformationRules.cs
- EncodingNLS.cs
- DataKey.cs
- Normalization.cs
- ColumnResizeUndoUnit.cs
- IgnoreSectionHandler.cs
- SystemThemeKey.cs