示例#1
0
 /// <summary>
 /// The Close method releases any resources associated with the page.
 /// </summary>
 public void Close()
 {
     if (_pageHandle > 0)
     {
         Error_Control_Block ecb = new Error_Control_Block();
         Check(ISYS11df.IGR_Close_Page(_pageHandle, ref ecb), ecb);
         _pageHandle = 0;
     }
 }