C# 클래스 Amazon.SQS.Model.SendMessageRequest

파일 보기 프로젝트 열기: aws/aws-sdk-net 1 사용 예제들

공개 메소드들

메소드 설명
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