Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Serialization / SoapAttributeAttribute.cs / 1305376 / SoapAttributeAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Serialization { using System; ////// /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Parameter | AttributeTargets.ReturnValue)] public class SoapAttributeAttribute : System.Attribute { string attributeName; string ns; string dataType; ///[To be supplied.] ////// /// public SoapAttributeAttribute() { } ///[To be supplied.] ////// /// public SoapAttributeAttribute(string attributeName) { this.attributeName = attributeName; } ///[To be supplied.] ////// /// public string AttributeName { get { return attributeName == null ? string.Empty : attributeName; } set { attributeName = value; } } ///[To be supplied.] ////// /// public string Namespace { get { return ns; } set { ns = value; } } ///[To be supplied.] ////// /// public string DataType { get { return dataType == null ? string.Empty : dataType; } set { dataType = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlSchemaObjectTable.cs
- SymLanguageType.cs
- ResourcePermissionBaseEntry.cs
- TypefaceMetricsCache.cs
- FlowThrottle.cs
- PerformanceCounterManager.cs
- _PooledStream.cs
- SystemIPv6InterfaceProperties.cs
- ValidatingPropertiesEventArgs.cs
- SerializationInfoEnumerator.cs
- WindowsHyperlink.cs
- ItemType.cs
- MailWebEventProvider.cs
- SettingsPropertyWrongTypeException.cs
- ChannelBinding.cs
- LocalValueEnumerator.cs
- LocatorManager.cs
- DefaultMergeHelper.cs
- BamlRecords.cs
- DecimalKeyFrameCollection.cs
- FtpRequestCacheValidator.cs
- FormViewInsertedEventArgs.cs
- FieldNameLookup.cs
- IncrementalHitTester.cs
- MenuItemAutomationPeer.cs
- CategoryGridEntry.cs
- MarginsConverter.cs
- HashCodeCombiner.cs
- Matrix3DStack.cs
- AddInEnvironment.cs
- COM2EnumConverter.cs
- HttpProfileBase.cs
- DeploymentExceptionMapper.cs
- RequestBringIntoViewEventArgs.cs
- BuildDependencySet.cs
- BaseInfoTable.cs
- CodeCommentStatementCollection.cs
- StorageInfo.cs
- TrustSection.cs
- StyleCollection.cs
- PolyQuadraticBezierSegment.cs
- Version.cs
- EqualityComparer.cs
- Compiler.cs
- DesignerAdapterAttribute.cs
- DbProviderManifest.cs
- StylusSystemGestureEventArgs.cs
- TraceContext.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- HostProtectionPermission.cs
- Grant.cs
- JsonQueryStringConverter.cs
- ObjectViewListener.cs
- SlotInfo.cs
- ActionFrame.cs
- XmlHierarchyData.cs
- AnimationTimeline.cs
- WebPartConnectionsCloseVerb.cs
- SqlDataSourceSelectingEventArgs.cs
- AuthorizationContext.cs
- NativeMethods.cs
- GridViewCommandEventArgs.cs
- Utils.cs
- SortedDictionary.cs
- WebPermission.cs
- Int16.cs
- TextEffect.cs
- HandleCollector.cs
- XmlArrayItemAttribute.cs
- RotateTransform3D.cs
- FrameDimension.cs
- DbXmlEnabledProviderManifest.cs
- XhtmlTextWriter.cs
- MruCache.cs
- DataControlField.cs
- URLMembershipCondition.cs
- SqlNodeTypeOperators.cs
- ConfigurationValidatorAttribute.cs
- MailAddress.cs
- CharEntityEncoderFallback.cs
- InProcStateClientManager.cs
- RecognizerStateChangedEventArgs.cs
- ExtensionWindowHeader.cs
- SubstitutionResponseElement.cs
- ListBoxItemAutomationPeer.cs
- CheckBox.cs
- SafeNativeMethods.cs
- ExpressionSelection.cs
- Geometry.cs
- ErrorsHelper.cs
- TypeSystemProvider.cs
- ReflectPropertyDescriptor.cs
- WebPartConnectionsCancelEventArgs.cs
- MobileTemplatedControlDesigner.cs
- ExecutionEngineException.cs
- WebPartHeaderCloseVerb.cs
- CheckBoxFlatAdapter.cs
- TransformedBitmap.cs
- DrawingContextWalker.cs
- SmiMetaData.cs