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; ////// /// [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.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GlobalizationSection.cs
- DeclaredTypeElement.cs
- XmlCodeExporter.cs
- KeyGestureConverter.cs
- SiteMapNodeItem.cs
- EntityDataSourceDataSelectionPanel.cs
- ZipFileInfoCollection.cs
- Win32MouseDevice.cs
- printdlgexmarshaler.cs
- RewritingSimplifier.cs
- WebPartCatalogAddVerb.cs
- SqlFunctionAttribute.cs
- TrackingMemoryStreamFactory.cs
- WorkflowPageSetupDialog.cs
- ViewStateException.cs
- ChtmlMobileTextWriter.cs
- ConfigDefinitionUpdates.cs
- WriterOutput.cs
- Pointer.cs
- RemoteX509AsymmetricSecurityKey.cs
- XmlSerializationGeneratedCode.cs
- Random.cs
- JumpList.cs
- RawStylusActions.cs
- OnOperation.cs
- ReferenceEqualityComparer.cs
- CompModSwitches.cs
- DataGridParentRows.cs
- SiteMapNode.cs
- NetSectionGroup.cs
- ConfigurationValidatorAttribute.cs
- DesignerRegion.cs
- TreeViewBindingsEditor.cs
- LabelDesigner.cs
- DataGridColumnsPage.cs
- DesignBindingValueUIHandler.cs
- DataTableReader.cs
- FontStyle.cs
- SyndicationFeed.cs
- StreamGeometry.cs
- TemplatedAdorner.cs
- CreateSequenceResponse.cs
- DataSysAttribute.cs
- DataGridViewCellCollection.cs
- BoundColumn.cs
- ColorMatrix.cs
- TraversalRequest.cs
- CurrencyManager.cs
- MultipartContentParser.cs
- FastEncoderWindow.cs
- ToolStripOverflowButton.cs
- ToolStripItemTextRenderEventArgs.cs
- SecureEnvironment.cs
- DecoderNLS.cs
- ClassGenerator.cs
- Convert.cs
- TextWriter.cs
- ExceptionUtil.cs
- IsolatedStorage.cs
- RadioButton.cs
- DummyDataSource.cs
- TrackingServices.cs
- EnumerationRangeValidationUtil.cs
- RC2.cs
- ResourceReferenceExpression.cs
- LogPolicy.cs
- PublisherMembershipCondition.cs
- Hyperlink.cs
- HttpDictionary.cs
- ListView.cs
- Interlocked.cs
- CreateUserWizardAutoFormat.cs
- XmlQueryType.cs
- ExceptionCollection.cs
- CaseStatement.cs
- InternalResources.cs
- RenderDataDrawingContext.cs
- SettingsBindableAttribute.cs
- DynamicResourceExtension.cs
- DesignerAdRotatorAdapter.cs
- ResourceBinder.cs
- NamedPipeProcessProtocolHandler.cs
- CacheOutputQuery.cs
- XmlSchemaValidationException.cs
- Popup.cs
- xmlformatgeneratorstatics.cs
- HexParser.cs
- TCEAdapterGenerator.cs
- EmptyElement.cs
- KerberosSecurityTokenParameters.cs
- EncoderFallback.cs
- CellRelation.cs
- ScriptControlDescriptor.cs
- GetCertificateRequest.cs
- TimerElapsedEvenArgs.cs
- CompositeFontFamily.cs
- Overlapped.cs
- ContractMapping.cs
- ProxyWebPartManager.cs
- MimePart.cs