Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx35 / System.WorkflowServices / System / Workflow / Activities / OperationParameterInfoCollection.cs / 1305376 / OperationParameterInfoCollection.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.Workflow.Activities { using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics.CodeAnalysis; using System.ServiceModel; using System.Workflow.ComponentModel.Serialization; [Serializable] [DesignerSerializer(typeof(CollectionMarkupSerializer), typeof(WorkflowMarkupSerializer))] public sealed class OperationParameterInfoCollection : List, IList , IList { [SuppressMessage("Microsoft.Usage", "CA2235:MarkAllNonSerializableFields")] OperationInfoBase owner = null; public OperationParameterInfoCollection() { } public OperationParameterInfoCollection(OperationInfoBase owner) { if (owner == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("owner"); } this.owner = owner; } public new int Count { get { return ((ICollection ) this).Count; } } int ICollection .Count { get { return base.Count; } } bool ICollection .IsReadOnly { get { return false; } } bool ICollection.IsSynchronized { get { return false; } } object ICollection.SyncRoot { get { return this; } } bool IList.IsFixedSize { get { return false; } } bool IList.IsReadOnly { get { return ((IList ) this).IsReadOnly; } } public new OperationParameterInfo this[int index] { get { return ((IList ) this)[index]; } set { ((IList ) this)[index] = value; } } public OperationParameterInfo this[string key] { get { if (key == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("key"); } for (int index = 0; index < this.Count; index++) { if (string.Equals(this[index].Name, key, StringComparison.Ordinal)) { return this[index]; } } return null; } } OperationParameterInfo IList .this[int index] { get { return base[index]; } set { if (value == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("item"); } base[index] = value; } } object IList.this[int index] { get { return ((IList ) this)[index]; } set { if (!(value is OperationParameterInfo)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument( "value", SR2.GetString(SR2.Error_InvalidListItem, typeof(OperationParameterInfo).FullName)); } ((IList ) this)[index] = (OperationParameterInfo) value; } } public new void Add(OperationParameterInfo item) { ((IList ) this).Add(item); } public new void Clear() { ((IList ) this).Clear(); } public new bool Contains(OperationParameterInfo item) { return ((IList ) this).Contains(item); } public new IEnumerator GetEnumerator() { return ((IList ) this).GetEnumerator(); } void ICollection .Add(OperationParameterInfo item) { if (item == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("item"); } base.Add(item); } void ICollection .Clear() { base.Clear(); } bool ICollection .Contains(OperationParameterInfo item) { return base.Contains(item); } void ICollection .CopyTo(OperationParameterInfo[] array, int arrayIndex) { base.CopyTo(array, arrayIndex); } void ICollection.CopyTo(Array array, int index) { if (array == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("array"); } for (int loop = 0; loop < this.Count; loop++) { array.SetValue(this[loop], loop + index); } } bool ICollection .Remove(OperationParameterInfo item) { if (!base.Contains(item)) { return false; } int index = base.IndexOf(item); if (index >= 0) { base.Remove(item); return true; } return false; } IEnumerator IEnumerable .GetEnumerator() { return base.GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return (IEnumerator)((IList ) this).GetEnumerator(); } int IList.Add(object value) { if (!(value is OperationParameterInfo)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument( "value", SR2.GetString(SR2.Error_InvalidListItem, typeof(OperationParameterInfo).FullName)); } ((IList ) this).Add((OperationParameterInfo) value); return this.Count - 1; } void IList.Clear() { ((IList ) this).Clear(); } bool IList.Contains(object value) { if (!(value is OperationParameterInfo)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument( "value", SR2.GetString(SR2.Error_InvalidListItem, typeof(OperationParameterInfo).FullName)); } return (((IList ) this).Contains((OperationParameterInfo) value)); } int IList .IndexOf(OperationParameterInfo item) { return base.IndexOf(item); } int IList.IndexOf(object value) { if (!(value is OperationParameterInfo)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument( "value", SR2.GetString(SR2.Error_InvalidListItem, typeof(OperationParameterInfo).FullName)); } return ((IList ) this).IndexOf((OperationParameterInfo) value); } void IList .Insert(int index, OperationParameterInfo item) { if (index < 0 || index > base.Count) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("index")); } if (item == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("item"); } base.Insert(index, item); } void IList.Insert(int index, object value) { if (!(value is OperationParameterInfo)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument( "value", SR2.GetString(SR2.Error_InvalidListItem, typeof(OperationParameterInfo).FullName)); } ((IList ) this).Insert(index, (OperationParameterInfo) value); } void IList.Remove(object value) { if (!(value is OperationParameterInfo)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument( "value", SR2.GetString(SR2.Error_InvalidListItem, typeof(OperationParameterInfo).FullName)); } ((IList ) this).Remove((OperationParameterInfo) value); } void IList .RemoveAt(int index) { if (index < 0 || index >= base.Count) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("index")); } base.RemoveAt(index); } public new int IndexOf(OperationParameterInfo item) { return ((IList ) this).IndexOf(item); } public new void Insert(int index, OperationParameterInfo item) { ((IList ) this).Insert(index, item); } public new bool Remove(OperationParameterInfo item) { return ((IList ) this).Remove(item); } public new void RemoveAt(int index) { ((IList ) this).RemoveAt(index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RuntimeHelpers.cs
- CancelRequestedRecord.cs
- XmlNodeList.cs
- ObjectViewListener.cs
- PrimitiveXmlSerializers.cs
- QueryTaskGroupState.cs
- Timeline.cs
- HtmlTableCell.cs
- ConnectionInterfaceCollection.cs
- ObjectAnimationBase.cs
- ChannelHandler.cs
- UnknownBitmapDecoder.cs
- SinglePhaseEnlistment.cs
- Cursors.cs
- FileInfo.cs
- TerminateSequenceResponse.cs
- ExpressionPrinter.cs
- UnmanagedMarshal.cs
- SqlNodeTypeOperators.cs
- Literal.cs
- WebRequest.cs
- CodeAttributeDeclaration.cs
- WaitForChangedResult.cs
- WindowAutomationPeer.cs
- CollectionEditVerbManager.cs
- dbdatarecord.cs
- InvalidWMPVersionException.cs
- GridViewCancelEditEventArgs.cs
- TextServicesHost.cs
- EntityClientCacheEntry.cs
- Renderer.cs
- HtmlWindowCollection.cs
- SrgsRulesCollection.cs
- HtmlTableCellCollection.cs
- TypeConverterAttribute.cs
- StubHelpers.cs
- BaseTemplateCodeDomTreeGenerator.cs
- CapacityStreamGeometryContext.cs
- ZipIOLocalFileDataDescriptor.cs
- GroupDescription.cs
- CacheForPrimitiveTypes.cs
- EventItfInfo.cs
- VersionedStreamOwner.cs
- FlowThrottle.cs
- SessionEndingEventArgs.cs
- BindableTemplateBuilder.cs
- StatusBar.cs
- BufferedGraphics.cs
- RelationshipDetailsCollection.cs
- ComboBox.cs
- PropertyChangedEventArgs.cs
- SqlClientFactory.cs
- RecognizerInfo.cs
- ServiceOperationInfoTypeConverter.cs
- ExtractorMetadata.cs
- DetailsViewRowCollection.cs
- ExpressionBindingsDialog.cs
- CompositeCollectionView.cs
- DependencyProperty.cs
- IteratorDescriptor.cs
- OdbcTransaction.cs
- QilDataSource.cs
- CodeIdentifiers.cs
- MultitargetingHelpers.cs
- ErrorTableItemStyle.cs
- WebException.cs
- GeometryGroup.cs
- TreeNodeConverter.cs
- Vector3DKeyFrameCollection.cs
- HttpServerVarsCollection.cs
- SmiXetterAccessMap.cs
- RadioButtonStandardAdapter.cs
- IPAddress.cs
- IPEndPointCollection.cs
- DataSourceProvider.cs
- EllipseGeometry.cs
- Inline.cs
- NullableConverter.cs
- DataGridViewColumnDesigner.cs
- DataGridViewRowsAddedEventArgs.cs
- ScriptingWebServicesSectionGroup.cs
- SQLGuid.cs
- Directory.cs
- CollectionViewSource.cs
- xamlnodes.cs
- UrlMappingsModule.cs
- DataGridViewRowHeaderCell.cs
- StoryFragments.cs
- AxisAngleRotation3D.cs
- IndexedString.cs
- ParseHttpDate.cs
- Timer.cs
- XmlC14NWriter.cs
- AttributeAction.cs
- WpfGeneratedKnownProperties.cs
- AttributeQuery.cs
- PersonalizablePropertyEntry.cs
- PocoPropertyAccessorStrategy.cs
- JavascriptXmlWriterWrapper.cs
- Errors.cs