Desktop Functions: Smart Device Functions:
|
Search Results for "Close" in [All]coredll
static extern TODO CeFindCloseRegChange(TODO);
Private Shared Function CeFindCloseRegChange(ByVal hChangeHandle As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
static extern TODO CloseClipboard(TODO);
Declare Function CloseClipboard Lib "coredll.dll" (TODO) As TODO <DllImport("coredll.dll")> Shared Function CloseClipboard() As Boolean 3: CloseHandle
public static extern bool CloseHandle(HANDLE hObject);
Declare Function CloseHandle Lib "coredll.dll" (hObject As IntPtr) As Boolean
public static extern bool CloseHandle(HANDLE hObject);
CloseHandle(p); 4: CreateEvent
public static extern bool CloseHandle(HANDLE hObject);
CloseHandle(p);
Public Shared Function CloseHandle(ByVal handle As IntPtr) As Boolean
Throw New ObjectDisposedException("WaitHandle", "WaitEvent has already been closed or never initialized")
Public Function Close() As Boolean
Throw New ObjectDisposedException("WaitHandle", "WaitEvent has already been closed or never initialized")
WaitHandles.CloseHandle(_handle)
WaitHandles.CloseHandle(Me._handle)
NativeMethods.CloseHandle(file); 7: EventModify
public static extern bool CloseHandle(HANDLE hObject);
CloseHandle(p);
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
// close IME(direct input for Alphabet and Number) 10: lineClose 11: lineShutDown Even though this method attempts to close all open lines prior to shutting down, it is recommended that you call lineClose yourself on any open lines prior to calling this. 12: OpenClipboard 13: OpenEvent Use the DuplicateHandle function to duplicate the handle. Use the CloseHandle function to close the handle. The system closes the handle automatically when the process terminates. The event object is destroyed when its last handle has been closed. 14: RasHangUp Use this function together with RasEnumConnections, to return a list of the active connections, then the sample code below will loop through the RASCONN[] array and close each one. public static void CloseAllConnections() 15: RegCloseKey 16: ResetEvent
public static extern bool CloseHandle(HANDLE hObject);
CloseHandle(p); 17: SetClipboardData 18: SetEvent
public static extern bool CloseHandle(HANDLE hObject);
CloseHandle(p); 19: waveInClose
[DllImport ("coredll.dll", EntryPoint="waveInClose", SetLastError=true)]
public static extern int waveInClose(IntPtr hDev);
Shared Function waveInClose(ByVal hDev As IntPtr) As Integer 20: waveInOpen
const uint WIM_CLOSE = 0x3BF; 21: waveOutClose
[DllImport ("coredll.dll", EntryPoint="waveOutClose", SetLastError=true)]
public static extern int waveOutClose(IntPtr hwo);
Declare Function waveOutClose Lib "coredll.dll" (TODO) As TODO 22: WriteFile
CloseHandle hFile urlmon23: FindMimeFromData
fs.Close();
fs.Close() InterfacesWindowClosing event is never fired when implemented with 2.0 .Net Fx. Workaround available at http://blogs.msdn.com/jpsanders/archive/2007/05/25/how-to-close-the-form-hosting-the-webbrowser-control-when-scripting-calls-window-close-in-the-net-framework-version-2-0.aspx> 25: IAdviseSink
void OnClose(); 26: IDeskBand
int CloseDW([In] Int32 dwReserved);
''' Called by explorer when window is about to close.
Public Overridable Sub CloseDW(dwReserved As UInt32) Implements IDeskBand.CloseDW, IDockingWindow.CloseDW
Sub CloseDW(<[In]> dwReserved As UInt32)
Sub CloseDW(<[In]()> dwReserved As UInt32) 27: IDeskBand2
int CloseDW([In] Int32 dwReserved);
''' Called by explorer when window is about to close.
Public Overridable Sub CloseDW(dwReserved As UInt32) Implements IDeskBand.CloseDW, IDockingWindow.CloseDW
Sub CloseDW(<[In]> dwReserved As UInt32)
Sub CloseDW(<[In]()> dwReserved As UInt32) 28: IFileOpenDialog
void Close ( [MarshalAs ( UnmanagedType.Error )] int hr ); 29: IFileSaveDialog
void Close ( [MarshalAs ( UnmanagedType.Error )] int hr );
/// <param name="hEnum">Handle of enumeration to be closed.</param>
/// STDMETHOD_(void, CloseEnum)(
/// HCORENUM hEnum) PURE; // Enum to be closed.
void CloseEnum(
metaDataAssemblyImport.CloseEnum(phEnum);
tempCoreStream.Close();
tempCoreStream.Close();
#region Close
/// Closes an XMLForm in the form control
public void Close(InteractionType interactionType)
// trying to close it
InfoPathControl.XmlForm.Close();
throw new HostedException("An error occurred while attempting to close this form", ex);
ChkResult(ExecuteCommand(FormControlCommandIds.CommandIds.Close)); 32: IOleObject
void Close(uint dwSaveOption); 33: IProgressDialog
/// IProgressDialog::StopProgressDialog to close the dialog box. The application must wait until the
/// box will be closed shortly. 34: IPStore
int CloseItem(PST_KEY key, ref Guid pItemType, ref Guid pItemSubtype, [MarshalAs(UnmanagedType.LPWStr)]string szItemName, uint dwFlags); winscardgdi3236: AbortPath 37: CloseEnhMetaFile
static extern IntPtr CloseEnhMetaFile(IntPtr hdc);
Declare Function CloseEnhMetaFile Lib "gdi32.dll" _ 38: CloseFigure 39: CloseMetaFile 40: GetFontData
br.Close(); wintrust41: WinVerifyTrust
Close = 0x00000002, kernel3242: AddAtom [System.String.Intern] is the closest thing, although an atom is different from a string. 43: CloseHandle
static extern bool CloseHandle(IntPtr hObject);
Public Shared Function CloseHandle(ByVal hObject As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
Declare Auto Function CloseHandle Lib "kernel32.dll" (ByVal hObject As IntPtr) As Boolean
Declare Function CloseHandle Lib "kernel32" Alias "CloseHandle" (ByVal hObject As Integer) As Integer
static def CloseHandle(hObject as IntPtr) as bool: For .NET 2.0, consider using Microsoft.Win32.SafeHandles.SafeFileHandle instead. It can be used where IntPtr is used. If you use a SafeFileHandle, do not call CloseHandle as the CLR will close it for you (even if it's already closed).
static extern unsafe bool CloseHandle(
CloseHandle(hMapFile) 44: ConsoleFunctions
// so we want to use LayoutKind.Explicit to mimic it as closely
CTRL_CLOSE_EVENT, - Save the current buffer information so you can restore it when close it your buffer 46: CreateEvent
are.Close();
CloseHandle(myEventHandle); NOTE: This class needs some changes. The CloseHandle call will destroy the event when the last handle is closed. This makes it hard for one application to "lock" the event while making another wait on it since this class is always closing the handle. An alternative that I found to work is to have the CreateEvent call in the constructor and implement IDisposable by moving the CloseHandle call to the Dispose method.
static extern bool CloseHandle(IntPtr hObject);
CloseHandle( _Handle );
CloseHandle( _Handle );
CloseHandle( _Handle );
CloseHandle( _Handle ); 47: CreateFile
Win32API.CloseHandle(_hMMF);
_fs.Close();
internal static extern bool CloseHandle(IntPtr hFile);
Win32API.CloseHandle(_hMMF);
_fs.Close();
internal static extern bool CloseHandle(IntPtr hFile); 49: CreateMutex
mutex.Close(); 50: CreateNamedPipe
/// then call Close();
private static extern bool CloseHandle(IntPtr handle);
throw new ObjectDisposedException("NamedPipeStream", "The stream has already been closed");
throw new ObjectDisposedException("NamedPipeStream", "The stream has already been closed");
public override void Close()
CloseHandle(_handle);
throw new ObjectDisposedException("NamedPipeStream", "The stream has already been closed");
sw.Close();
private static extern bool CloseHandle([In] IntPtr hObject);
CloseHandle(handleToSnapshot); 52: DeviceIoControl
FsctlOpBatchAckClosePending = (EFileDevice.FileSystem << 16) | (4 << 2) | EMethod.Buffered | (0 << 14),
FsctlWriteUsnCloseRecord = (EFileDevice.FileSystem << 16) | (59 << 2) | EMethod.Neither | (0 << 14),
Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Integer) As Integer
CloseHandle(hdrive) 53: DuplicateHandle
DUPLICATE_CLOSE_SOURCE = (0x00000001),// Closes the source handle. This occurs regardless of any error status returned. 54: FindAtom [System.String.IsInterned] is the closest thing, although an atom is different from a string. 55: FindClose 57: FindFirstFile
FindClose(hFile); 58: FindFirstFileEx
FindClose(hFile); 59: FindFirstVolume
static extern bool FindVolumeClose(IntPtr hFindVolume);
return FindVolumeClose(handle);
static extern bool CloseHandle(IntPtr hHandle);
CloseHandle(ptrProcess); Cut off search results after 60. Please refine your search. |