C# Class Amazon.SQS.Model.SendMessageRequest

Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
SendMessageRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

SendMessageRequest ( string queueUrl, string messageBody ) : System

Instantiates SendMessageRequest with the parameterized properties

Private Methods

Method Description
IsSetDelaySeconds ( ) : bool
IsSetMessageAttributes ( ) : bool
IsSetMessageBody ( ) : bool
IsSetMessageDeduplicationId ( ) : bool
IsSetMessageGroupId ( ) : bool
IsSetQueueUrl ( ) : bool

Method Details

SendMessageRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public SendMessageRequest ( ) : System
return System

SendMessageRequest() public method

Instantiates SendMessageRequest with the parameterized properties
public SendMessageRequest ( string queueUrl, string messageBody ) : System
queueUrl string The URL of the Amazon SQS queue to which a message is sent. Queue URLs are case-sensitive.
messageBody string The message to send. The maximum string size is 256 KB. The following list shows the characters (in Unicode) that are allowed in your message, according to the W3C XML specification:
  • #x9
  • #xA
  • #xD
  • #x20 to #xD7FF
  • #xE000 to #xFFFD
  • #x10000 to #x10FFFF
For more information, see RFC1321. If you send any characters that aren't included in this list, your request is rejected.
return System