当前位置: 首页>>代码示例>>C#>>正文


C# TwitterContext.TweetWithMedia方法代码示例

本文整理汇总了C#中LinqToTwitter.TwitterContext.TweetWithMedia方法的典型用法代码示例。如果您正苦于以下问题:C# TwitterContext.TweetWithMedia方法的具体用法?C# TwitterContext.TweetWithMedia怎么用?C# TwitterContext.TweetWithMedia使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在LinqToTwitter.TwitterContext的用法示例。


在下文中一共展示了TwitterContext.TweetWithMedia方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: tweetSnapShot

        // take a snapshot on push gesture, and tweet it
        public void tweetSnapShot(TwitterContext ctx)
        {
            // create a png bitmap encoder which knows how to save a .png file
            BitmapEncoder encoder = new PngBitmapEncoder();

            // create frame from the writable bitmap and add to encoder
            encoder.Frames.Add(BitmapFrame.Create(this.colorBitmap));

            string time = System.DateTime.Now.ToString("hh'-'mm'-'ss", CultureInfo.CurrentUICulture.DateTimeFormat);
            string saveDirectory = @"..\..\Snapshots";
            string filename = "KinectSnapshot-" + time + ".png";
            string path = System.IO.Path.Combine(saveDirectory, filename);

            // write the new file to disk
            try
            {
                using (FileStream fs = new FileStream(path, FileMode.Create))
                {
                    encoder.Save(fs);
                }
            }
            catch (IOException)
            {
                Console.WriteLine("Saving Snapshot Failed");
            }

            var mediaItems =
            new List<Media>
            {
                new Media
                {
                    Data = Utilities.GetFileBytes(path),
                    FileName = filename,
                    ContentType = MediaContentType.Png
                }
            };
            // tweeting with media takes the picture file and the status message
            var tweet = ctx.TweetWithMedia("Tweeting with media! #KineXionZ",false,mediaItems);
        }
开发者ID:jpchiodini,项目名称:Gesture-Recognition-Interface,代码行数:40,代码来源:Photobooth.xaml.cs

示例2: TweetWithMediaDemo

        static void TweetWithMediaDemo(TwitterContext twitterCtx)
        {
            string status = "Testing TweetWithMedia #Linq2Twitter £ " + DateTime.Now.ToString(CultureInfo.InvariantCulture);
            const bool PossiblySensitive = false;
            const decimal Latitude = StatusExtensions.NoCoordinate; //37.78215m;
            const decimal Longitude = StatusExtensions.NoCoordinate; // -122.40060m;
            const bool DisplayCoordinates = false;

            const string ReplaceThisWithYourImageLocation = @"..\..\images\200xColor_2.png";

            var mediaItems =
                new List<Media>
                {
                    new Media
                    {
                        Data = Utilities.GetFileBytes(ReplaceThisWithYourImageLocation),
                        FileName = "200xColor_2.png",
                        ContentType = MediaContentType.Png
                    }
                };

            Status tweet = twitterCtx.TweetWithMedia(
                status, PossiblySensitive, Latitude, Longitude,
                null, DisplayCoordinates, mediaItems, null);

            Console.WriteLine("Media item sent - Tweet Text: " + tweet.Text);
        }
开发者ID:CheyPMK,项目名称:linqtotwitter,代码行数:27,代码来源:StatusDemos.cs


注:本文中的LinqToTwitter.TwitterContext.TweetWithMedia方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。