Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Messaging / System / Messaging / Design / MessageQueueConverter.cs / 1305376 / MessageQueueConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Messaging.Design { using System.Messaging; using System.Threading; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System; using System.Drawing; using System.Windows.Forms; using System.Windows.Forms.Design; using System.Windows.Forms.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Messaging.Interop; using System.Collections; using System.Collections.Specialized; using System.Globalization; ////// internal class MessageQueueConverter : TypeConverter { private static Hashtable componentsCreated = new Hashtable(StringComparer.InvariantCultureIgnoreCase); /// /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertFrom(context, sourceType); } internal static void AddToCache(MessageQueue queue) { componentsCreated[queue.Path] = queue; } /// /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value != null && value is string) { string text = ((string)value).Trim(); if (text == String.Empty) return null; if (text.CompareTo(Res.GetString(Res.NotSet)) != 0) { MessageQueue newQueue = GetFromCache(text); if (newQueue != null) return newQueue; else { newQueue = new MessageQueue(text); AddToCache(newQueue); if (context != null) context.Container.Add(newQueue); return newQueue; } } } return null; } /// /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType != null && destinationType == typeof(string)) { if (value != null) return((MessageQueue)value).Path; else return Res.GetString(Res.NotSet); } return base.ConvertTo(context, culture, value, destinationType); } internal static MessageQueue GetFromCache(string path) { if (componentsCreated.ContainsKey(path)) { MessageQueue existingComponent = (MessageQueue)componentsCreated[path]; if (existingComponent.Site == null) componentsCreated.Remove(path); else { if (existingComponent.Path == path) return existingComponent; else componentsCreated.Remove(path); } } return null; } } } // 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
- WindowsRichEditRange.cs
- StylusPoint.cs
- XmlNamespaceMappingCollection.cs
- AsymmetricSignatureFormatter.cs
- StyleBamlTreeBuilder.cs
- SqlFunctionAttribute.cs
- HttpCapabilitiesEvaluator.cs
- TransportListener.cs
- ProcessModelInfo.cs
- SettingsSection.cs
- DocumentSequence.cs
- FixedSOMPageElement.cs
- DataSvcMapFile.cs
- DetailsViewInsertedEventArgs.cs
- TickBar.cs
- TimeZoneNotFoundException.cs
- Point.cs
- NameValuePair.cs
- TextServicesCompartmentEventSink.cs
- DiscriminatorMap.cs
- AutomationIdentifierGuids.cs
- Stack.cs
- StateRuntime.cs
- ProgressBarAutomationPeer.cs
- StringArrayConverter.cs
- VectorCollectionValueSerializer.cs
- WebColorConverter.cs
- EnvironmentPermission.cs
- ObjectSecurity.cs
- LocatorGroup.cs
- GeneralTransform2DTo3D.cs
- DefaultValidator.cs
- CacheModeConverter.cs
- SHA512Managed.cs
- XsltConvert.cs
- TextWriter.cs
- PropertyPushdownHelper.cs
- CheckBox.cs
- Root.cs
- GeometryCollection.cs
- OrderedDictionaryStateHelper.cs
- DesignerActionService.cs
- _LocalDataStoreMgr.cs
- CollectionDataContract.cs
- ScheduleChanges.cs
- IPGlobalProperties.cs
- EDesignUtil.cs
- SrgsElementFactoryCompiler.cs
- AccessViolationException.cs
- Pkcs7Recipient.cs
- CodeConditionStatement.cs
- processwaithandle.cs
- _AcceptOverlappedAsyncResult.cs
- Debugger.cs
- EntitySqlQueryCacheKey.cs
- ByteConverter.cs
- RouteParameter.cs
- EntityDataSourceContextCreatedEventArgs.cs
- TdsParserStaticMethods.cs
- EventBookmark.cs
- ExpressionList.cs
- StrongName.cs
- TemplatedAdorner.cs
- XmlWriterTraceListener.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- GeneralTransform2DTo3D.cs
- CallbackDebugElement.cs
- DigestTraceRecordHelper.cs
- Empty.cs
- LocalValueEnumerator.cs
- XmlNodeChangedEventManager.cs
- PartDesigner.cs
- __Filters.cs
- BuildProvider.cs
- CreateInstanceBinder.cs
- KeyFrames.cs
- RowType.cs
- XmlSortKeyAccumulator.cs
- PropertyTabAttribute.cs
- HttpHandler.cs
- ValueConversionAttribute.cs
- CategoryAttribute.cs
- LogReserveAndAppendState.cs
- ObjectConverter.cs
- TimerEventSubscriptionCollection.cs
- SpecialNameAttribute.cs
- WizardPanel.cs
- ColumnReorderedEventArgs.cs
- DockProviderWrapper.cs
- PathFigureCollectionValueSerializer.cs
- SchemaConstraints.cs
- SendMailErrorEventArgs.cs
- DataListCommandEventArgs.cs
- UmAlQuraCalendar.cs
- SiteMapNodeItem.cs
- MailAddressCollection.cs
- FileDialogCustomPlace.cs
- DateTimePicker.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- SelectingProviderEventArgs.cs