C# 클래스 Microsoft.AspNet.WebHooks.SlackField

The SlackField class is used for expression table fields as part of a SlackAttachment, please see https://api.slack.com/docs/attachments for details. Fields are displayed in a table inside the message attachment.
파일 보기 프로젝트 열기: aspnet/WebHooks 1 사용 예제들

Private Properties

프로퍼티 타입 설명
SlackField System

공개 메소드들

메소드 설명
SlackField ( string title, string value ) : System

Initializes a new instance of the SlackField with the given title and value.

비공개 메소드들

메소드 설명
SlackField ( ) : System

Default constructor for serialization purposes

메소드 상세

SlackField() 공개 메소드

Initializes a new instance of the SlackField with the given title and value.
public SlackField ( string title, string value ) : System
title string The field title shown as a bold heading above the value text. It cannot contain markup and will be escaped /// by the receiver.
value string The field value which may contain Markdown-style formatting as described in https://api.slack.com/docs/formatting. /// The value may be multi-line and must be escaped following Markdown rules.
리턴 System