Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Messaging / System / Messaging / DefaultPropertiesToSend.cs / 1305376 / DefaultPropertiesToSend.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Messaging { using System.Diagnostics; using System; using System.ComponentModel; ////// /// [TypeConverter(typeof(ExpandableObjectConverter))] public class DefaultPropertiesToSend { private Message cachedMessage = new Message(); private bool designMode; private MessageQueue cachedAdminQueue; private MessageQueue cachedResponseQueue; private MessageQueue cachedTransactionStatusQueue; ////// Specifies the default property values that will be used when /// sending objects using the message queue. /// ////// /// public DefaultPropertiesToSend() { } ////// Initializes a new instance of the ////// class. /// /// internal DefaultPropertiesToSend(bool designMode) { this.designMode = designMode; } /// /// /// [DefaultValueAttribute(AcknowledgeTypes.None), MessagingDescription(Res.MsgAcknowledgeType)] public AcknowledgeTypes AcknowledgeType { get { return this.cachedMessage.AcknowledgeType; } set { this.cachedMessage.AcknowledgeType = value; } } ////// Gets /// or sets the type of acknowledgement message to be returned to the sending /// application. /// ////// /// [DefaultValueAttribute(null), MessagingDescription(Res.MsgAdministrationQueue)] public MessageQueue AdministrationQueue { get { if (this.designMode) { if (this.cachedAdminQueue != null && this.cachedAdminQueue.Site == null) this.cachedAdminQueue = null; return this.cachedAdminQueue; } return this.cachedMessage.AdministrationQueue; } set { //The format name of this queue shouldn't be //resolved at desgin time, but it should at runtime. if (this.designMode) this.cachedAdminQueue = value; else this.cachedMessage.AdministrationQueue = value; } } ////// Gets or sets the queue used for acknowledgement messages /// generated by the application. This is the queue that /// will receive the acknowledgment message for the message you are about to /// send. /// ////// /// [DefaultValueAttribute(0), MessagingDescription(Res.MsgAppSpecific)] public int AppSpecific { get { return this.cachedMessage.AppSpecific; } set { this.cachedMessage.AppSpecific = value; } } ////// Gets or sets application-generated information. /// /// ////// /// [DefaultValueAttribute(true), MessagingDescription(Res.MsgAttachSenderId)] public bool AttachSenderId { get { return this.cachedMessage.AttachSenderId; } set { this.cachedMessage.AttachSenderId = value; } } ////// Gets or sets a value indicating if the sender ID is to be attached to the /// message. /// /// ////// internal Message CachedMessage { get { return this.cachedMessage; } } /// /// /// [DefaultValueAttribute(EncryptionAlgorithm.Rc2), MessagingDescription(Res.MsgEncryptionAlgorithm)] public EncryptionAlgorithm EncryptionAlgorithm { get { return this.cachedMessage.EncryptionAlgorithm; } set { this.cachedMessage.EncryptionAlgorithm = value; } } ////// Gets or sets the encryption algorithm used to encrypt the body of a /// private message. /// /// ////// /// [ Editor("System.ComponentModel.Design.ArrayEditor, " + AssemblyRef.SystemDesign, "System.Drawing.Design.UITypeEditor, " + AssemblyRef.SystemDrawing), MessagingDescription(Res.MsgExtension) ] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public byte[] Extension { get { return this.cachedMessage.Extension; } set { this.cachedMessage.Extension = value; } } ////// Gets or sets additional information associated with the message. /// /// ////// /// [DefaultValueAttribute(HashAlgorithm.Md5), MessagingDescription(Res.MsgHashAlgorithm)] public HashAlgorithm HashAlgorithm { get { return this.cachedMessage.HashAlgorithm; } set { this.cachedMessage.HashAlgorithm = value; } } ////// Gets or sets the hashing algorithm used when /// authenticating /// messages. /// /// ////// /// [DefaultValueAttribute(""), MessagingDescription(Res.MsgLabel)] public string Label { get { return this.cachedMessage.Label; } set { this.cachedMessage.Label = value; } } ////// Gets or sets the message label. /// /// ////// /// [DefaultValueAttribute(MessagePriority.Normal), MessagingDescription(Res.MsgPriority)] public MessagePriority Priority { get { return this.cachedMessage.Priority; } set { this.cachedMessage.Priority = value; } } ////// Gets or sets the message priority. /// ////// /// [DefaultValueAttribute(false), MessagingDescription(Res.MsgRecoverable)] public bool Recoverable { get { return this.cachedMessage.Recoverable; } set { this.cachedMessage.Recoverable = value; } } ////// Gets or sets a value indicating whether the message is /// guaranteed to be delivered in the event /// of a computer failure or network problem. /// /// ////// /// [DefaultValueAttribute(null), MessagingDescription(Res.MsgResponseQueue)] public MessageQueue ResponseQueue { get { if (this.designMode) return this.cachedResponseQueue; return this.cachedMessage.ResponseQueue; } set { //The format name of this queue shouldn't be //resolved at desgin time, but it should at runtime. if (this.designMode) this.cachedResponseQueue = value; else this.cachedMessage.ResponseQueue = value; } } ////// Gets or sets the queue which receives application-generated response /// messages. /// /// ////// /// [ TypeConverter(typeof(System.Messaging.Design.TimeoutConverter)), MessagingDescription(Res.MsgTimeToBeReceived) ] public TimeSpan TimeToBeReceived { get { return this.cachedMessage.TimeToBeReceived; } set { this.cachedMessage.TimeToBeReceived = value; } } ////// Gets or sets the time limit for the message to be /// retrieved from /// the target queue. /// ////// /// [ TypeConverter(typeof(System.Messaging.Design.TimeoutConverter)), MessagingDescription(Res.MsgTimeToReachQueue) ] public TimeSpan TimeToReachQueue { get { return this.cachedMessage.TimeToReachQueue; } set { this.cachedMessage.TimeToReachQueue = value; } } ////// Gets or sets the time limit for the message to /// reach the queue. /// /// ////// /// [DefaultValueAttribute(null), MessagingDescription(Res.MsgTransactionStatusQueue)] public MessageQueue TransactionStatusQueue { get { if (this.designMode) return this.cachedTransactionStatusQueue; return this.cachedMessage.TransactionStatusQueue; } set { //The format name of this queue shouldn't be //resolved at desgin time, but it should at runtime. if (this.designMode) this.cachedTransactionStatusQueue = value; else this.cachedMessage.TransactionStatusQueue = value; } } ////// Gets the transaction status queue on the source computer. /// /// ////// /// [DefaultValueAttribute(false), MessagingDescription(Res.MsgUseAuthentication)] public bool UseAuthentication { get { return this.cachedMessage.UseAuthentication; } set { this.cachedMessage.UseAuthentication = value; } } ////// Gets or sets a value indicating whether the message must be authenticated. /// ////// /// [DefaultValueAttribute(false), MessagingDescription(Res.MsgUseDeadLetterQueue)] public bool UseDeadLetterQueue { get { return this.cachedMessage.UseDeadLetterQueue; } set { this.cachedMessage.UseDeadLetterQueue = value; } } ////// Gets or sets a value indicating whether a copy of the message that could not /// be delivered should be sent to a dead-letter queue. /// ////// /// [DefaultValueAttribute(false), MessagingDescription(Res.MsgUseEncryption)] public bool UseEncryption { get { return this.cachedMessage.UseEncryption; } set { this.cachedMessage.UseEncryption = value; } } ////// Gets or sets a value indicating whether to encrypt private messages. /// ////// /// [DefaultValueAttribute(false), MessagingDescription(Res.MsgUseJournalQueue)] public bool UseJournalQueue { get { return this.cachedMessage.UseJournalQueue; } set { this.cachedMessage.UseJournalQueue = value; } } ////// Gets or sets a value indicating whether a copy of the message should be kept /// in a machine journal on the originating computer. /// ////// /// [DefaultValueAttribute(false), MessagingDescription(Res.MsgUseTracing)] public bool UseTracing { get { return this.cachedMessage.UseTracing; } set { this.cachedMessage.UseTracing = value; } } ////// Gets or sets a value indicating whether to trace a message as it moves toward /// its destination queue. /// ////// private bool ShouldSerializeTimeToBeReceived() { if (TimeToBeReceived == Message.InfiniteTimeout) return false; return true; } /// /// private bool ShouldSerializeTimeToReachQueue() { if (TimeToReachQueue == Message.InfiniteTimeout) return false; return true; } /// /// private bool ShouldSerializeExtension() { if (Extension != null && Extension.Length > 0) { return true; } return false; } } } // 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
- DbProviderConfigurationHandler.cs
- Pair.cs
- CurrentTimeZone.cs
- Zone.cs
- SchemaNamespaceManager.cs
- CounterCreationDataCollection.cs
- QilUnary.cs
- EventHandlerList.cs
- TreeWalker.cs
- OutputCache.cs
- ColorIndependentAnimationStorage.cs
- VirtualPathProvider.cs
- IpcClientChannel.cs
- CachedBitmap.cs
- XhtmlTextWriter.cs
- RepeaterItemEventArgs.cs
- DesignerPainter.cs
- UnsafeNativeMethods.cs
- SuppressIldasmAttribute.cs
- OdbcParameter.cs
- HttpWebRequest.cs
- CreateParams.cs
- Registry.cs
- IncrementalHitTester.cs
- ParenthesizePropertyNameAttribute.cs
- Comparer.cs
- SqlBooleanizer.cs
- ContextStaticAttribute.cs
- TabRenderer.cs
- XmlSchemaObjectTable.cs
- SmtpFailedRecipientException.cs
- WarningException.cs
- ActivityExecutionFilter.cs
- SiteMapNodeItem.cs
- OperandQuery.cs
- RewritingProcessor.cs
- DesignerHost.cs
- COM2ExtendedUITypeEditor.cs
- GeneralTransform3D.cs
- CompressedStack.cs
- ResourceDictionary.cs
- MailDefinition.cs
- FileDialog.cs
- OutputCacheSettingsSection.cs
- MonikerProxyAttribute.cs
- StatusBarDrawItemEvent.cs
- MatrixAnimationUsingKeyFrames.cs
- UidManager.cs
- LookupBindingPropertiesAttribute.cs
- CodeTryCatchFinallyStatement.cs
- QueryStringParameter.cs
- WindowsFormsHostPropertyMap.cs
- FunctionCommandText.cs
- MultiTrigger.cs
- AssemblyUtil.cs
- MembershipSection.cs
- OracleCommandBuilder.cs
- DbException.cs
- Column.cs
- SchemaElementLookUpTable.cs
- AddressHeader.cs
- DataChangedEventManager.cs
- CheckedListBox.cs
- StrokeNodeOperations2.cs
- ApplicationSecurityManager.cs
- ObjectResult.cs
- IdentityNotMappedException.cs
- BamlBinaryWriter.cs
- UntrustedRecipientException.cs
- AssociatedControlConverter.cs
- EnumValidator.cs
- XpsFilter.cs
- SyntaxCheck.cs
- FormViewCommandEventArgs.cs
- TextEncodedRawTextWriter.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- ProviderConnectionPoint.cs
- PersonalizationStateQuery.cs
- UpdateException.cs
- EntityDataSourceWizardForm.cs
- RegexStringValidator.cs
- WebColorConverter.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- JsonSerializer.cs
- XsdBuildProvider.cs
- QilName.cs
- StubHelpers.cs
- DataGridViewEditingControlShowingEventArgs.cs
- XmlDictionaryString.cs
- WarningException.cs
- Canvas.cs
- Speller.cs
- HttpContextServiceHost.cs
- DataAdapter.cs
- WindowsListViewGroupHelper.cs
- EntityContainer.cs
- QueryOutputWriter.cs
- Processor.cs
- HostedTransportConfigurationBase.cs
- PasswordTextNavigator.cs