Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Serialization / SoapElementAttribute.cs / 1 / SoapElementAttribute.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Serialization {
using System;
///
///
/// [To be supplied.]
///
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
public class SoapElementAttribute : System.Attribute {
string elementName;
string dataType;
bool nullable;
///
///
/// [To be supplied.]
///
public SoapElementAttribute() {
}
///
///
/// [To be supplied.]
///
public SoapElementAttribute(string elementName) {
this.elementName = elementName;
}
///
///
/// [To be supplied.]
///
public string ElementName {
get { return elementName == null ? string.Empty : elementName; }
set { elementName = value; }
}
///
///
/// [To be supplied.]
///
public string DataType {
get { return dataType == null ? string.Empty : dataType; }
set { dataType = value; }
}
///
///
/// [To be supplied.]
///
public bool IsNullable {
get { return nullable; }
set { nullable = value; }
}
}
}
// 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
- FormView.cs
- COM2FontConverter.cs
- PieceDirectory.cs
- WrapPanel.cs
- Regex.cs
- DataTableExtensions.cs
- VerifyHashRequest.cs
- ConsoleCancelEventArgs.cs
- AttachedPropertyBrowsableAttribute.cs
- WsdlImporter.cs
- Brush.cs
- XPathNavigator.cs
- GlobalProxySelection.cs
- FixedStringLookup.cs
- DataGridViewTopLeftHeaderCell.cs
- HuffmanTree.cs
- XamlStyleSerializer.cs
- DataContractSerializerSection.cs
- CalendarKeyboardHelper.cs
- RelatedImageListAttribute.cs
- TextParagraphProperties.cs
- IpcChannel.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- StringAttributeCollection.cs
- ProtocolInformationWriter.cs
- SafeFileHandle.cs
- GrammarBuilderWildcard.cs
- TokenFactoryCredential.cs
- NetworkAddressChange.cs
- Pair.cs
- SecurityKeyUsage.cs
- TrackingMemoryStream.cs
- RoutedEventConverter.cs
- ErrorStyle.cs
- BrowserCapabilitiesCompiler.cs
- DataServiceHostWrapper.cs
- UiaCoreTypesApi.cs
- MyContact.cs
- InvalidEnumArgumentException.cs
- NavigationCommands.cs
- TextRunCacheImp.cs
- NoClickablePointException.cs
- ChannelManager.cs
- EDesignUtil.cs
- AuthStoreRoleProvider.cs
- SafeHandle.cs
- QueryExpression.cs
- ChtmlPageAdapter.cs
- NativeCppClassAttribute.cs
- HMACSHA512.cs
- PassportAuthentication.cs
- GradientStopCollection.cs
- Hashtable.cs
- CustomExpressionEventArgs.cs
- EventLog.cs
- Native.cs
- HwndKeyboardInputProvider.cs
- SQLByteStorage.cs
- DbConvert.cs
- DoubleCollectionConverter.cs
- Composition.cs
- JsonStringDataContract.cs
- QueryResults.cs
- HostedTransportConfigurationManager.cs
- DrawToolTipEventArgs.cs
- xdrvalidator.cs
- AccessedThroughPropertyAttribute.cs
- StorageRoot.cs
- SafeNativeMethods.cs
- InstanceNotFoundException.cs
- RegularExpressionValidator.cs
- CodeExpressionCollection.cs
- EventsTab.cs
- Panel.cs
- SqlConnectionPoolGroupProviderInfo.cs
- SoapIncludeAttribute.cs
- SqlErrorCollection.cs
- ContentIterators.cs
- Decoder.cs
- AssociationSetMetadata.cs
- fixedPageContentExtractor.cs
- AppearanceEditorPart.cs
- PageCodeDomTreeGenerator.cs
- RoutedEventArgs.cs
- SeparatorAutomationPeer.cs
- TaiwanLunisolarCalendar.cs
- OciHandle.cs
- GroupLabel.cs
- MsmqTransportSecurity.cs
- XmlAttributes.cs
- WebPartsPersonalization.cs
- HttpListenerPrefixCollection.cs
- DesignTimeDataBinding.cs
- OutputWindow.cs
- EntityContainerRelationshipSet.cs
- Bidi.cs
- EditingCoordinator.cs
- WebBrowserPermission.cs
- SqlDataAdapter.cs
- InvokeWebServiceDesigner.cs