예제 #1
0
 private void BtnFetchDocumentSize_Click(object sender, EventArgs e)
 {
     textBox1.Text = string.Empty;
     if (int.TryParse(txtRegistryEntryId.Text, out int registryEntryId))
     {
         _oms.FetchDocument(registryEntryId);
     }
     else
     {
         textBox1.Text = "RegistryEntry-id is not numeric";
     }
 }