3
Visual Studio 11 Developer Previewでアプリケーションを作成していますが、reader.InputStreamOptions = InputStreamOptions.Partialを使用してアプリケーションをしばらく実行するとこのエラーが発生します。オプションセット:Windows 8 Consumer Preview + Visual Studio 11 DeveloperプレビューのソケットBUG
An unhandled exception of type 'System.Exception' occurred in mscorlib.dll
Additional information: The operation attempted to access data outside the valid range (Exception from HRESULT: 0x8000000B)
このオプションが設定されていない場合、ソケットはストリームを正常に読み取ることができます。ここ
は参考のためのコードである:
private StreamSocket tcpClient;
public string Server = "10.1.10.64";
public int Port = 6000;
VideoController vCtrl = new VideoController();
/// <summary>
/// Initializes the singleton application object. This is the first line of authored code
/// executed, and as such is the logical equivalent of main() or WinMain().
/// </summary>
public App()
{
tcpClient = new StreamSocket();
Connect();
this.InitializeComponent();
this.Suspending += OnSuspending;
}
public async void Connect()
{
await tcpClient.ConnectAsync(
new Windows.Networking.HostName(Server),
Port.ToString(),
SocketProtectionLevel.PlainSocket);
DataReader reader = new DataReader(tcpClient.InputStream);
Byte[] byteArray = new Byte[1000];
//reader.InputStreamOptions = InputStreamOptions.Partial;
while (true)
{
await reader.LoadAsync(1000);
reader.ReadBytes(byteArray);
// unsafe
//{
// fixed(Byte *fixedByteBuffer = &byteArray[0])
// {
vCtrl.Consume(byteArray);
vCtrl.Decode();
// }
//}
}
}
例外がreader.ReadBytesで発生します。 – pkumar0
質問は何ですか? – driis
これはバグですか?そこに修正が来ますか?ほとんどの人がVisual Studio 11 Betaを使用しているので、最後のプルはそれ以外の場合は破損します。 – pkumar0