LineSharp.Datatypes.TalkService.Client.createQrcodeBase64Image C# (CSharp) Method

createQrcodeBase64Image() public method

public createQrcodeBase64Image ( string url, string characterSet, int imageSize, int x, int y, int width, int height ) : string
url string
characterSet string
imageSize int
x int
y int
width int
height int
return string
      public string createQrcodeBase64Image(string url, string characterSet, int imageSize, int x, int y, int width, int height)
      {
        #if !SILVERLIGHT
        send_createQrcodeBase64Image(url, characterSet, imageSize, x, y, width, height);
        return recv_createQrcodeBase64Image();

        #else
        var asyncResult = Begin_createQrcodeBase64Image(null, null, url, characterSet, imageSize, x, y, width, height);
        return End_createQrcodeBase64Image(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client