Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Base / System / Windows / Markup / XmlLangPropertyAttribute.cs / 1 / XmlLangPropertyAttribute.cs
//---------------------------------------------------------------------------- // // File: XmlLangPropertyAttribute.cs // // Description: // This attribute is placed on a class to identify it as the place to set // the value of the xml:lang attribute from the XML markup file. // // Example: // [XmlLangProperty("Language")] // public class ExampleFrameworkElement // // Means that when the parser sees: // //// // The parser will set the "Language" property with the value "en-US". // // // Copyright (C) by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace System.Windows.Markup { /// /// An attribute that specifies which property the xml:lang value should /// be directed to. /// [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)] public sealed class XmlLangPropertyAttribute : Attribute { ////// Creates a new XmlLangPropertyAttribute with the given string /// as the property name. /// public XmlLangPropertyAttribute(string name) { _name = name; } ////// The name of the property that is designated to accept the xml:lang value /// public string Name { get { return _name; } } // The name of the property that is designated to accept the xml:lang value private string _name = null; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CmsUtils.cs
- XmlAttributeCache.cs
- DelegateSerializationHolder.cs
- Vector3DAnimationBase.cs
- HttpSessionStateBase.cs
- PolyBezierSegment.cs
- UnsafeNativeMethods.cs
- XmlWriterTraceListener.cs
- WorkflowHostingEndpoint.cs
- SecurityState.cs
- ProxyHwnd.cs
- DataServices.cs
- PreservationFileWriter.cs
- SqlTypeConverter.cs
- TraceLevelHelper.cs
- ButtonBaseAdapter.cs
- KoreanCalendar.cs
- InternalControlCollection.cs
- SizeConverter.cs
- OdbcTransaction.cs
- PropertyChangeTracker.cs
- ControlAdapter.cs
- TreeWalker.cs
- Base64Decoder.cs
- AppPool.cs
- PackageDigitalSignatureManager.cs
- RoutingBehavior.cs
- ThreadPool.cs
- ExpressionBuilderContext.cs
- Deflater.cs
- ByteStream.cs
- OperatorExpressions.cs
- TransactionTraceIdentifier.cs
- ProxyManager.cs
- PersonalizationDictionary.cs
- RuntimeWrappedException.cs
- OptimalTextSource.cs
- SemaphoreSlim.cs
- BackStopAuthenticationModule.cs
- SR.cs
- Maps.cs
- SelectionHighlightInfo.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- CopyEncoder.cs
- TextChangedEventArgs.cs
- WpfGeneratedKnownTypes.cs
- SQLSingleStorage.cs
- SmiContext.cs
- AutoGeneratedField.cs
- ListViewInsertedEventArgs.cs
- HtmlControl.cs
- PathGradientBrush.cs
- ObjectStateEntryDbDataRecord.cs
- GeometryHitTestResult.cs
- SQLConvert.cs
- SimpleModelProvider.cs
- Convert.cs
- Lease.cs
- TextFragmentEngine.cs
- Parameter.cs
- SelectManyQueryOperator.cs
- GridViewColumn.cs
- Dispatcher.cs
- TextRangeEditLists.cs
- ParenthesizePropertyNameAttribute.cs
- OdbcConnection.cs
- Privilege.cs
- StateMachineSubscription.cs
- ThreadStartException.cs
- LazyTextWriterCreator.cs
- BypassElementCollection.cs
- BinaryObjectInfo.cs
- UriTemplateTableMatchCandidate.cs
- LocalizedNameDescriptionPair.cs
- EntityDataSourceSelectingEventArgs.cs
- RestHandlerFactory.cs
- IERequestCache.cs
- EntityClientCacheKey.cs
- CompositeActivityCodeGenerator.cs
- InputMethodStateTypeInfo.cs
- NativeMethods.cs
- documentation.cs
- ProjectionCamera.cs
- FunctionCommandText.cs
- IncrementalReadDecoders.cs
- MimeBasePart.cs
- BaseValidator.cs
- PathGradientBrush.cs
- XPathSingletonIterator.cs
- ButtonChrome.cs
- InputScopeAttribute.cs
- RandomNumberGenerator.cs
- ResourceSet.cs
- odbcmetadatacolumnnames.cs
- PropertyStore.cs
- PostBackOptions.cs
- TextSimpleMarkerProperties.cs
- HtmlTableRow.cs
- MDIClient.cs
- CalendarDesigner.cs