Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Serialization / SoapElementAttribute.cs / 1305376 / 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.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AttributeCollection.cs
- ConcurrentQueue.cs
- DrawingVisual.cs
- HMACRIPEMD160.cs
- BitmapEffectInputConnector.cs
- DataGridViewCheckBoxColumn.cs
- UriWriter.cs
- SslStream.cs
- PolygonHotSpot.cs
- Condition.cs
- DrawingState.cs
- WebPartConnectionsConnectVerb.cs
- NewItemsContextMenuStrip.cs
- EUCJPEncoding.cs
- VisualBasicSettingsHandler.cs
- FakeModelPropertyImpl.cs
- PersonalizationAdministration.cs
- XmlSchemaExporter.cs
- WebBrowserContainer.cs
- CssClassPropertyAttribute.cs
- ISAPIApplicationHost.cs
- CodeTypeParameter.cs
- XmlAnyElementAttribute.cs
- WorkflowDesignerMessageFilter.cs
- ColumnResizeUndoUnit.cs
- SQLBinaryStorage.cs
- TypeUtils.cs
- EmptyStringExpandableObjectConverter.cs
- Flattener.cs
- RealizationDrawingContextWalker.cs
- Button.cs
- XmlNodeChangedEventManager.cs
- SqlTypesSchemaImporter.cs
- GenerateTemporaryAssemblyTask.cs
- AttributeInfo.cs
- RemotingAttributes.cs
- HashSetEqualityComparer.cs
- AffineTransform3D.cs
- ToolStripInSituService.cs
- PackageDigitalSignature.cs
- TextServicesCompartmentContext.cs
- NonPrimarySelectionGlyph.cs
- XmlHierarchyData.cs
- CompositeDataBoundControl.cs
- KerberosRequestorSecurityTokenAuthenticator.cs
- DataGridViewRowsRemovedEventArgs.cs
- HtmlTitle.cs
- SelectionListComponentEditor.cs
- IisTraceListener.cs
- X509InitiatorCertificateServiceElement.cs
- SqlProcedureAttribute.cs
- ObjectParameterCollection.cs
- ControlBuilderAttribute.cs
- LateBoundChannelParameterCollection.cs
- ScriptingRoleServiceSection.cs
- ConfigurationSettings.cs
- ResourceReferenceExpressionConverter.cs
- DataGridViewImageCell.cs
- AuthenticationService.cs
- SafeLocalMemHandle.cs
- oledbmetadatacolumnnames.cs
- sortedlist.cs
- KernelTypeValidation.cs
- TextUtf8RawTextWriter.cs
- Label.cs
- Debug.cs
- DataGridBoolColumn.cs
- SafeThemeHandle.cs
- UnicastIPAddressInformationCollection.cs
- Process.cs
- DataException.cs
- NetworkCredential.cs
- ServiceCredentialsElement.cs
- TextTrailingWordEllipsis.cs
- ReadOnlyPropertyMetadata.cs
- WindowsScrollBar.cs
- SHA256.cs
- HttpClientCertificate.cs
- QueryStringConverter.cs
- FlowNode.cs
- DocumentOrderQuery.cs
- ExpressionBindingCollection.cs
- CmsInterop.cs
- GeometryGroup.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- PropertyCollection.cs
- ListViewInsertionMark.cs
- ThrowHelper.cs
- MemberExpression.cs
- RepeaterCommandEventArgs.cs
- HttpAsyncResult.cs
- SiblingIterators.cs
- RightsManagementEncryptionTransform.cs
- EntityUtil.cs
- IndexerNameAttribute.cs
- TreeViewTemplateSelector.cs
- ButtonPopupAdapter.cs
- FixedPageProcessor.cs
- PassportAuthenticationEventArgs.cs
- ImmutableObjectAttribute.cs