Line.Messaging
1.2.4
See the version list below for details.
dotnet add package Line.Messaging --version 1.2.4
NuGet\Install-Package Line.Messaging -Version 1.2.4
<PackageReference Include="Line.Messaging" Version="1.2.4" />
paket add Line.Messaging --version 1.2.4
#r "nuget: Line.Messaging, 1.2.4"
// Install Line.Messaging as a Cake Addin #addin nuget:?package=Line.Messaging&version=1.2.4 // Install Line.Messaging as a Cake Tool #tool nuget:?package=Line.Messaging&version=1.2.4
SDK for the LINE Messaging API for C#
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
- Newtonsoft.Json (>= 10.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Line.Messaging:
Repository | Stars |
---|---|
pierre3/LineMessagingApi
LINE Messaging API for .Net
|
|
microsoft/Dynamics365-Apps-Samples
Sample code for Dynamics 365 apps
|
Version | Downloads | Last updated |
---|---|---|
1.4.5 | 51,606 | 1/20/2019 |
1.4.4 | 1,374 | 12/27/2018 |
1.4.3 | 1,416 | 11/23/2018 |
1.4.2 | 1,243 | 11/13/2018 |
1.4.1 | 2,092 | 9/21/2018 |
1.3.1 | 1,848 | 6/20/2018 |
1.2.6 | 1,745 | 5/2/2018 |
1.2.5 | 1,477 | 4/15/2018 |
1.2.4 | 4,969 | 3/4/2018 |
1.2.2 | 1,568 | 2/7/2018 |
1.2.1 | 2,154 | 12/14/2017 |
1.1.0 | 1,816 | 12/1/2017 |
1.0.1 | 1,680 | 11/9/2017 |
0.7.0-beta | 1,246 | 11/4/2017 |
0.6.0-beta | 1,283 | 10/7/2017 |
0.5.0-alpha | 1,364 | 10/4/2017 |
0.4.0-alpha | 1,277 | 9/18/2017 |
0.3.1-alpha | 1,264 | 9/10/2017 |
0.2.0-alpha | 1,270 | 8/27/2017 |
0.1.0-alpha | 1,261 | 8/22/2017 |
Supports API update at 2018-02-08 and 2018-02-22
( https://developers.line.me/en/docs/messaging-api/release-notes/ )
1. Default actions can now be set for template messages
2. displayText property for postback actions released
- We have released the displayText property and have deprecated the text property for postback actions.
We recommend using displayText instead of the text property.
- (Breaking changes) In the constructor of PostbackTemplateAction,
the value of the text parameter is now set to the DisplayText property by default.
If you want to use the Text property as before, please set "useDisplayText" parameter to "false".
//Use the DisplayText property
PostbackTemplateAction("label", "data", "text");
//Use the Text property (Behavior of previous versions)
PostbackTemplateAction("label", "data", "text", useDisplayText : false);
3. Property for accessibility released
- Now you can specify text to be spoken using the label property for imagemap messages and rich menus when the accessibility feature is enabled on the client device.
This feature is supported on LINE iOS version 8.2.0 and later.