C# Класс Amazon.SQS.Model.SendMessageRequest

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Приватные методы

Метод Описание
IsSetDelaySeconds ( ) : bool
IsSetMessageAttributes ( ) : bool
IsSetMessageBody ( ) : bool
IsSetMessageDeduplicationId ( ) : bool
IsSetMessageGroupId ( ) : bool
IsSetQueueUrl ( ) : bool

Описание методов

SendMessageRequest() публичный Метод

Empty constructor used to set properties independently even when a simple constructor is available
public SendMessageRequest ( ) : System
Результат System

SendMessageRequest() публичный Метод

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.
Результат System