This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Response> | |
<Say language="ja-JP">だるやなぎスピーチです。次のメッセージを発音してシャープキーを押しなさい。こんばんは</Say> | |
<Record action="http://example.jp/handler" finishOnKey="#"/> | |
</Response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"found": 42, | |
"meta": { | |
"links": { | |
"counts": "https://public-api.wordpress.com/rest/v1.1/sites/90668331/post-counts/post" | |
}, | |
"next_page": "value=2015-12-06T22%3A35%3A35%2B09%3A00&id=77563" | |
}, | |
"posts": [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ID": 90668331, | |
"URL": "http://pronama.azurewebsites.net", | |
"description": "略してプロ生", | |
"is_following": false, | |
"is_private": false, | |
"jetpack": true, | |
"logo": { | |
"id": 0, | |
"sizes": [], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<HttpGet> | |
<CacheOutput(ClientTimeSpan:=100, ServerTimeSpan:=100)> | |
Public Function GetALl(Optional offset As Integer = 0, Optional count As Integer = 100) As HttpResponseMessage | |
' ... | |
End Sub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Imports <xmlns:dc="http://purl.org/dc/elements/1.1/"> | |
Imports <xmlns:dcndl="http://ndl.go.jp/dcndl/terms/"> | |
Imports <xmlns:media="http://search.yahoo.com/mrss/"> | |
Imports <xmlns:p="http://pinga.mu/terms/"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Private Function CreateFeed(offset As Integer, count As Integer) As String | |
' ダミーデータ作成 | |
Dim channelPubDate = Now | |
Dim items = New List(Of ComicItem) | |
For i = offset + 1 To count | |
Dim item = New ComicItem With { | |
.Title = "タイトル" & i.ToString, | |
.PubDate = Now.AddDays(count - i), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Class ComicItem | |
Property Title As String | |
Property Description As String | |
Property PubDate As DateTime | |
Property ModifiedDate As DateTime | |
Property Link As String | |
Property Id As String | |
Property Volume As Integer | |
Property IsAvailable As Boolean | |
Property MediaUrl As String |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<HttpGet> | |
Public Function GetALl(Optional offset As Integer = 0, | |
Optional count As Integer = 100) As HttpResponseMessage | |
If offset < 0 Then | |
offset = 0 | |
End If | |
If count < 0 OrElse count > 100 Then | |
count = 100 | |
End If |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Imports System.Net | |
Imports System.Web.Http | |
Namespace Controllers | |
Public Class SpacoController | |
Inherits ApiController | |
End Class | |
End Namespace |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var snd = new SoundPlayer(Properties.Resources.kei_voice_023_1); | |
snd.Play(); |