📄 requestobject.h
字号:
#if !defined(AFX_REQUESTOBJECT_H__0D48B9AA_12DE_46F3_8DB5_FB5D98070B2B__INCLUDED_)
#define AFX_REQUESTOBJECT_H__0D48B9AA_12DE_46F3_8DB5_FB5D98070B2B__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CRequestObject : public CCmdTarget
{
DECLARE_DYNCREATE(CRequestObject)
CRequestObject(); // protected constructor used by dynamic creation
virtual ~CRequestObject();
// Attributes
public:
// Operations
public:
void AddQueryStringKey(LPCTSTR lpszKey, LPCTSTR lpszValue);
void AddFormKey(LPCTSTR lpszKey, LPCTSTR lpszValue);
void AddServerVariablesKey(LPCTSTR lpszKey, LPCTSTR lpszValue);
void AddCookiesKey(LPCTSTR lpszKey, LPCTSTR lpszValue);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CRequestObject)
public:
//}}AFX_VIRTUAL
// Implementation
protected:
void InitializeServerVariables();
IDictionaryPtr m_pQueryStringCollection;
IDictionaryPtr m_pFormCollection;
IDictionaryPtr m_pServerVariablesCollection;
IDictionaryPtr m_pCookiesCollection;
// Generated message map functions
//{{AFX_MSG(CRequestObject)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
// Generated OLE dispatch map functions
//{{AFX_DISPATCH(CRequestObject)
afx_msg LPDISPATCH QueryString();
afx_msg LPDISPATCH Form();
afx_msg LPDISPATCH ServerVariables();
afx_msg LPDISPATCH Cookies();
//}}AFX_DISPATCH
DECLARE_DISPATCH_MAP()
DECLARE_INTERFACE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_REQUESTOBJECT_H__0D48B9AA_12DE_46F3_8DB5_FB5D98070B2B__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -