Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Description / ServiceDescriptions.cs / 1305376 / ServiceDescriptions.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Description { using System.Xml; using System.Xml.Serialization; using System.Xml.Schema; using System.Collections; using System; using System.IO; using System.ComponentModel; ////// /// public sealed class ServiceDescriptionCollection : ServiceDescriptionBaseCollection { ///[To be supplied.] ////// /// public ServiceDescriptionCollection() : base(null) { } ///[To be supplied.] ////// /// public ServiceDescription this[int index] { get { return (ServiceDescription)List[index]; } set { List[index] = value; } } ///[To be supplied.] ////// /// public ServiceDescription this[string ns] { get { return (ServiceDescription)Table[ns]; } } ///[To be supplied.] ////// /// public int Add(ServiceDescription serviceDescription) { return List.Add(serviceDescription); } ///[To be supplied.] ////// /// public void Insert(int index, ServiceDescription serviceDescription) { List.Insert(index, serviceDescription); } ///[To be supplied.] ////// /// public int IndexOf(ServiceDescription serviceDescription) { return List.IndexOf(serviceDescription); } ///[To be supplied.] ////// /// public bool Contains(ServiceDescription serviceDescription) { return List.Contains(serviceDescription); } ///[To be supplied.] ////// /// public void Remove(ServiceDescription serviceDescription) { List.Remove(serviceDescription); } ///[To be supplied.] ////// /// public void CopyTo(ServiceDescription[] array, int index) { List.CopyTo(array, index); } ///[To be supplied.] ////// /// protected override string GetKey(object value) { string ns = ((ServiceDescription)value).TargetNamespace; if (ns == null) return string.Empty; return ns; } Exception ItemNotFound(XmlQualifiedName name, string type) { return new Exception(Res.GetString(Res.WebDescriptionMissingItem, type, name.Name, name.Namespace)); } ///[To be supplied.] ////// /// public Message GetMessage(XmlQualifiedName name) { ServiceDescription sd = GetServiceDescription(name); Message message = null; while(message == null && sd != null) { message = sd.Messages[name.Name]; sd = sd.Next; } if (message == null) throw ItemNotFound(name, "message"); return message; } ///[To be supplied.] ////// /// public PortType GetPortType(XmlQualifiedName name) { ServiceDescription sd = GetServiceDescription(name); PortType portType = null; while(portType == null && sd != null) { portType = sd.PortTypes[name.Name]; sd = sd.Next; } if (portType == null) throw ItemNotFound(name, "message"); return portType; } ///[To be supplied.] ////// /// public Service GetService(XmlQualifiedName name) { ServiceDescription sd = GetServiceDescription(name); Service service = null; while(service == null && sd != null) { service = sd.Services[name.Name]; sd = sd.Next; } if (service == null) throw ItemNotFound(name, "service"); return service; } ///[To be supplied.] ////// /// public Binding GetBinding(XmlQualifiedName name) { ServiceDescription sd = GetServiceDescription(name); Binding binding = null; while(binding == null && sd != null) { binding = sd.Bindings[name.Name]; sd = sd.Next; } if (binding == null) throw ItemNotFound(name, "binding"); return binding; } ServiceDescription GetServiceDescription(XmlQualifiedName name) { ServiceDescription serviceDescription = this[name.Namespace]; if (serviceDescription == null) { throw new ArgumentException(Res.GetString(Res.WebDescriptionMissing, name.ToString(), name.Namespace), "name"); } return serviceDescription; } ///[To be supplied.] ////// /// protected override void SetParent(object value, object parent) { ((ServiceDescription)value).SetParent((ServiceDescriptionCollection)parent); } ///[To be supplied.] ////// /// protected override void OnInsertComplete(int index, object value) { string key = GetKey(value); if (key != null) { ServiceDescription item = (ServiceDescription)Table[key]; ((ServiceDescription)value).Next = (ServiceDescription)Table[key]; Table[key] = value; } SetParent(value, this); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Description { using System.Xml; using System.Xml.Serialization; using System.Xml.Schema; using System.Collections; using System; using System.IO; using System.ComponentModel; ////// /// public sealed class ServiceDescriptionCollection : ServiceDescriptionBaseCollection { ///[To be supplied.] ////// /// public ServiceDescriptionCollection() : base(null) { } ///[To be supplied.] ////// /// public ServiceDescription this[int index] { get { return (ServiceDescription)List[index]; } set { List[index] = value; } } ///[To be supplied.] ////// /// public ServiceDescription this[string ns] { get { return (ServiceDescription)Table[ns]; } } ///[To be supplied.] ////// /// public int Add(ServiceDescription serviceDescription) { return List.Add(serviceDescription); } ///[To be supplied.] ////// /// public void Insert(int index, ServiceDescription serviceDescription) { List.Insert(index, serviceDescription); } ///[To be supplied.] ////// /// public int IndexOf(ServiceDescription serviceDescription) { return List.IndexOf(serviceDescription); } ///[To be supplied.] ////// /// public bool Contains(ServiceDescription serviceDescription) { return List.Contains(serviceDescription); } ///[To be supplied.] ////// /// public void Remove(ServiceDescription serviceDescription) { List.Remove(serviceDescription); } ///[To be supplied.] ////// /// public void CopyTo(ServiceDescription[] array, int index) { List.CopyTo(array, index); } ///[To be supplied.] ////// /// protected override string GetKey(object value) { string ns = ((ServiceDescription)value).TargetNamespace; if (ns == null) return string.Empty; return ns; } Exception ItemNotFound(XmlQualifiedName name, string type) { return new Exception(Res.GetString(Res.WebDescriptionMissingItem, type, name.Name, name.Namespace)); } ///[To be supplied.] ////// /// public Message GetMessage(XmlQualifiedName name) { ServiceDescription sd = GetServiceDescription(name); Message message = null; while(message == null && sd != null) { message = sd.Messages[name.Name]; sd = sd.Next; } if (message == null) throw ItemNotFound(name, "message"); return message; } ///[To be supplied.] ////// /// public PortType GetPortType(XmlQualifiedName name) { ServiceDescription sd = GetServiceDescription(name); PortType portType = null; while(portType == null && sd != null) { portType = sd.PortTypes[name.Name]; sd = sd.Next; } if (portType == null) throw ItemNotFound(name, "message"); return portType; } ///[To be supplied.] ////// /// public Service GetService(XmlQualifiedName name) { ServiceDescription sd = GetServiceDescription(name); Service service = null; while(service == null && sd != null) { service = sd.Services[name.Name]; sd = sd.Next; } if (service == null) throw ItemNotFound(name, "service"); return service; } ///[To be supplied.] ////// /// public Binding GetBinding(XmlQualifiedName name) { ServiceDescription sd = GetServiceDescription(name); Binding binding = null; while(binding == null && sd != null) { binding = sd.Bindings[name.Name]; sd = sd.Next; } if (binding == null) throw ItemNotFound(name, "binding"); return binding; } ServiceDescription GetServiceDescription(XmlQualifiedName name) { ServiceDescription serviceDescription = this[name.Namespace]; if (serviceDescription == null) { throw new ArgumentException(Res.GetString(Res.WebDescriptionMissing, name.ToString(), name.Namespace), "name"); } return serviceDescription; } ///[To be supplied.] ////// /// protected override void SetParent(object value, object parent) { ((ServiceDescription)value).SetParent((ServiceDescriptionCollection)parent); } ///[To be supplied.] ////// /// protected override void OnInsertComplete(int index, object value) { string key = GetKey(value); if (key != null) { ServiceDescription item = (ServiceDescription)Table[key]; ((ServiceDescription)value).Next = (ServiceDescription)Table[key]; Table[key] = value; } SetParent(value, this); } } } // 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
- Calendar.cs
- InteropEnvironment.cs
- NodeLabelEditEvent.cs
- Int32CAMarshaler.cs
- HtmlFormParameterReader.cs
- DataGridViewAdvancedBorderStyle.cs
- Helper.cs
- HttpDebugHandler.cs
- BinaryKeyIdentifierClause.cs
- TrackingStringDictionary.cs
- DisplayInformation.cs
- ConfigurationManagerHelper.cs
- DispatcherTimer.cs
- HwndStylusInputProvider.cs
- IsolatedStorageException.cs
- RegisteredExpandoAttribute.cs
- Floater.cs
- EditingCommands.cs
- LinqDataSourceSelectEventArgs.cs
- ElementHostAutomationPeer.cs
- FileSecurity.cs
- QueryCacheEntry.cs
- EnumValidator.cs
- ChannelProtectionRequirements.cs
- UnaryNode.cs
- DataTableReaderListener.cs
- PersonalizationProviderCollection.cs
- WindowsButton.cs
- RayMeshGeometry3DHitTestResult.cs
- DataGridHeaderBorder.cs
- EventSourceCreationData.cs
- JsonEnumDataContract.cs
- AdapterUtil.cs
- XmlDomTextWriter.cs
- XPathExpr.cs
- SmiEventStream.cs
- IsolationInterop.cs
- ResourcesChangeInfo.cs
- InstalledVoice.cs
- ScrollChrome.cs
- LocalClientSecuritySettingsElement.cs
- Delegate.cs
- StateMachineWorkflowInstance.cs
- ModelEditingScope.cs
- ImageBrush.cs
- ConcatQueryOperator.cs
- StdValidatorsAndConverters.cs
- ConfigurationValues.cs
- SafeLocalMemHandle.cs
- ScaleTransform3D.cs
- ImageListUtils.cs
- CultureInfo.cs
- ControlAdapter.cs
- MenuScrollingVisibilityConverter.cs
- SqlConnectionString.cs
- Selector.cs
- PointUtil.cs
- BufferedGraphicsManager.cs
- DefaultPrintController.cs
- TCPClient.cs
- XmlDataCollection.cs
- WebPartAuthorizationEventArgs.cs
- RectangleGeometry.cs
- DropShadowEffect.cs
- ObjectDataSourceStatusEventArgs.cs
- DataObject.cs
- DefaultExpressionVisitor.cs
- SelectionHighlightInfo.cs
- Inflater.cs
- XmlQueryStaticData.cs
- WindowsToolbarAsMenu.cs
- MailDefinition.cs
- UrlPropertyAttribute.cs
- DataGridViewRowEventArgs.cs
- SkewTransform.cs
- DESCryptoServiceProvider.cs
- DBDataPermissionAttribute.cs
- WorkItem.cs
- TextParaLineResult.cs
- AssociationTypeEmitter.cs
- DataGridViewBand.cs
- RotationValidation.cs
- EntityDataSourceView.cs
- TextEditorTyping.cs
- DocumentApplicationJournalEntry.cs
- IndexedGlyphRun.cs
- ConfigXmlComment.cs
- DataGridViewCellStyleEditor.cs
- SqlInfoMessageEvent.cs
- PageBreakRecord.cs
- ActivationArguments.cs
- ComponentResourceManager.cs
- QilSortKey.cs
- OrderedDictionary.cs
- GeometryValueSerializer.cs
- TextRangeEditLists.cs
- RadioButton.cs
- FileLoadException.cs
- Asn1IntegerConverter.cs
- DirectoryLocalQuery.cs