Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / Serialization / SoapTypeAttribute.cs / 1 / SoapTypeAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Serialization { using System; ////// /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Struct)] public class SoapTypeAttribute : System.Attribute { string ns; string typeName; bool includeInSchema = true; ///[To be supplied.] ////// /// public SoapTypeAttribute() { } ///[To be supplied.] ////// /// public SoapTypeAttribute(string typeName) { this.typeName = typeName; } ///[To be supplied.] ////// /// public SoapTypeAttribute(string typeName, string ns) { this.typeName = typeName; this.ns = ns; } ///[To be supplied.] ////// /// public bool IncludeInSchema { get { return includeInSchema; } set { includeInSchema = value; } } ///[To be supplied.] ////// /// public string TypeName { get { return typeName == null ? string.Empty : typeName; } set { typeName = value; } } ///[To be supplied.] ////// /// public string Namespace { get { return ns; } set { ns = 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
- KnownColorTable.cs
- EdmItemCollection.cs
- InvokePatternIdentifiers.cs
- Dictionary.cs
- HttpHandlerAction.cs
- WorkflowServiceAttributesTypeConverter.cs
- EventListener.cs
- WindowsFormsSectionHandler.cs
- ProgressiveCrcCalculatingStream.cs
- iisPickupDirectory.cs
- MessageQueueTransaction.cs
- DotExpr.cs
- XamlSerializer.cs
- DataBindEngine.cs
- IDQuery.cs
- ContentIterators.cs
- ItemsPanelTemplate.cs
- BaseTemplateBuildProvider.cs
- ScrollEvent.cs
- ColorEditor.cs
- WmlControlAdapter.cs
- TerminatingOperationBehavior.cs
- NTAccount.cs
- Exceptions.cs
- LinqExpressionNormalizer.cs
- MemberAccessException.cs
- CodePropertyReferenceExpression.cs
- EntityDataSourceReferenceGroup.cs
- StructuredTypeEmitter.cs
- XmlAttribute.cs
- TCEAdapterGenerator.cs
- ObjectMemberMapping.cs
- DataBindingCollectionConverter.cs
- DependencyPropertyValueSerializer.cs
- DeliveryStrategy.cs
- PriorityBindingExpression.cs
- DesignerActionUIStateChangeEventArgs.cs
- MetafileHeaderWmf.cs
- DataGridViewRowCollection.cs
- FigureParagraph.cs
- CodeBinaryOperatorExpression.cs
- VectorConverter.cs
- Font.cs
- QueryResults.cs
- ScalarOps.cs
- XmlUrlResolver.cs
- InternalPolicyElement.cs
- WorkflowOperationErrorHandler.cs
- ArglessEventHandlerProxy.cs
- TemplateColumn.cs
- TextPointerBase.cs
- ExecutorLocksHeldException.cs
- DocComment.cs
- WebRequestModulesSection.cs
- EntityTypeEmitter.cs
- MsmqHostedTransportManager.cs
- _emptywebproxy.cs
- ContainerCodeDomSerializer.cs
- SplineKeyFrames.cs
- InstallerTypeAttribute.cs
- IntegerValidator.cs
- ListViewTableCell.cs
- VirtualDirectoryMappingCollection.cs
- TypedAsyncResult.cs
- ListenerAdapterBase.cs
- WebPartZoneDesigner.cs
- ListViewInsertionMark.cs
- DrawingBrush.cs
- RawAppCommandInputReport.cs
- PropertyKey.cs
- PkcsMisc.cs
- ISAPIWorkerRequest.cs
- SettingsAttributes.cs
- IsolatedStorage.cs
- SafeBitVector32.cs
- ProxyWebPartManager.cs
- BrowserCapabilitiesFactory35.cs
- AsyncCompletedEventArgs.cs
- CodeDirectiveCollection.cs
- MouseButtonEventArgs.cs
- TcpConnectionPoolSettings.cs
- DesignTimeTemplateParser.cs
- UIntPtr.cs
- HtmlWindow.cs
- HijriCalendar.cs
- DataSet.cs
- WebPageTraceListener.cs
- HostAdapter.cs
- DocumentPageView.cs
- SerialPort.cs
- Flattener.cs
- SymbolEqualComparer.cs
- AspNetPartialTrustHelpers.cs
- FilterElement.cs
- SqlBooleanizer.cs
- FunctionQuery.cs
- ConfigurationHelpers.cs
- XDeferredAxisSource.cs
- ReferenceService.cs
- ImpersonateTokenRef.cs