Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / Script / Services / WebServiceEnumData.cs / 1 / WebServiceEnumData.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Globalization; namespace System.Web.Script.Services { using System; internal class WebServiceEnumData : WebServiceTypeData { bool isULong; string[] names; long[] values; internal WebServiceEnumData(string typeName, string typeNamespace, string[] names, long[] values, bool isULong) : base(typeName, typeNamespace) { InitWebServiceEnumData(names, values, isULong); } internal WebServiceEnumData(string typeName, string typeNamespace, Type t, string[] names, long[] values, bool isULong) : base(typeName, typeNamespace, t) { InitWebServiceEnumData(names, values, isULong); } internal WebServiceEnumData(string typeName, string typeNamespace, string[] names, Array values, bool isULong) : base(typeName, typeNamespace) { InitWebServiceEnumData(names, values, isULong); } internal WebServiceEnumData(string typeName, string typeNamespace, Type t, string[] names, Array values, bool isULong) : base(typeName, typeNamespace) { InitWebServiceEnumData(names, values, isULong); } internal bool IsULong { get { return isULong; } } internal string[] Names { get { return names; } } internal long[] Values { get { return values; } } private void InitWebServiceEnumData(string[] names, long[] values, bool isULong) { System.Diagnostics.Debug.Assert(names != null); System.Diagnostics.Debug.Assert(values != null); System.Diagnostics.Debug.Assert(names.Length == values.Length); this.names = names; this.values = values; this.isULong = isULong; } private void InitWebServiceEnumData(string[] names, Array values, bool isULong) { System.Diagnostics.Debug.Assert(names != null); System.Diagnostics.Debug.Assert(values != null); System.Diagnostics.Debug.Assert(names.Length == values.Length); this.names = names; this.values = new long[values.Length]; for (int i = 0; i < values.Length; i++) { object enumValue = values.GetValue(i); if (isULong) { this.values[i] = (long)((IConvertible)enumValue).ToUInt64(CultureInfo.InvariantCulture); } else { this.values[i] = ((IConvertible)enumValue).ToInt64(CultureInfo.InvariantCulture); } } this.isULong = isULong; } } } // 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
- UrlPath.cs
- PathFigure.cs
- RegexMatch.cs
- SchemaExporter.cs
- DataGridViewDataConnection.cs
- FixedSOMContainer.cs
- ComplexLine.cs
- __Filters.cs
- CodePropertyReferenceExpression.cs
- ScrollViewerAutomationPeer.cs
- ElementFactory.cs
- GridViewDeleteEventArgs.cs
- XmlSortKey.cs
- MetadataException.cs
- MimeBasePart.cs
- EntityConnection.cs
- ConsumerConnectionPoint.cs
- XamlInt32CollectionSerializer.cs
- CompilerInfo.cs
- BadImageFormatException.cs
- XamlPathDataSerializer.cs
- AuditLog.cs
- EpmContentDeSerializer.cs
- XsltCompileContext.cs
- CodeTypeDeclarationCollection.cs
- CacheModeValueSerializer.cs
- HtmlGenericControl.cs
- XmlMembersMapping.cs
- ProfileProvider.cs
- util.cs
- TextComposition.cs
- CodeDomDesignerLoader.cs
- DataGridViewColumnCollection.cs
- IBuiltInEvidence.cs
- StrokeNodeEnumerator.cs
- ReadOnlyHierarchicalDataSourceView.cs
- ButtonField.cs
- ConfigXmlElement.cs
- RecordConverter.cs
- PhonemeEventArgs.cs
- OletxDependentTransaction.cs
- DeferredTextReference.cs
- Message.cs
- PeerContact.cs
- ContextMenu.cs
- oledbmetadatacollectionnames.cs
- Dynamic.cs
- SelectionList.cs
- Visual3D.cs
- EtwTrace.cs
- DetailsViewUpdateEventArgs.cs
- DbProviderFactories.cs
- UInt32Storage.cs
- WebPermission.cs
- SecurityException.cs
- SQLChars.cs
- ReadOnlyTernaryTree.cs
- Vertex.cs
- ObjectItemCachedAssemblyLoader.cs
- IisTraceListener.cs
- DebuggerService.cs
- SchemaType.cs
- ExceptionUtility.cs
- DescendantOverDescendantQuery.cs
- TemplateBindingExtensionConverter.cs
- externdll.cs
- MsmqIntegrationBindingElement.cs
- CollectionViewGroupRoot.cs
- ZipIOExtraField.cs
- ProbeMatchesApril2005.cs
- DataServiceRequestException.cs
- SoapObjectInfo.cs
- DataRecordInternal.cs
- TextEditorLists.cs
- _SslSessionsCache.cs
- BaseResourcesBuildProvider.cs
- ConstantSlot.cs
- XslCompiledTransform.cs
- TypeLibConverter.cs
- IsolatedStorageException.cs
- RoutingTable.cs
- ReservationNotFoundException.cs
- SapiGrammar.cs
- IFlowDocumentViewer.cs
- SyndicationDeserializer.cs
- DbConnectionPoolGroupProviderInfo.cs
- VisualStateChangedEventArgs.cs
- SystemColors.cs
- AsyncSerializedWorker.cs
- ContextStaticAttribute.cs
- ExecutionContext.cs
- IdentityHolder.cs
- OutputChannelBinder.cs
- BitmapEffectGroup.cs
- EmissiveMaterial.cs
- ProfileInfo.cs
- ConsumerConnectionPoint.cs
- HtmlInputRadioButton.cs
- FixedSOMSemanticBox.cs
- PassportAuthentication.cs