다음을 통해 공유


IDispensedHttpModuleContextContainer::ReleaseContainer 메서드

컨텍스트 컨테이너가 분배되면 삭제됩니다.

구문

virtual VOID ReleaseContainer(  
   VOID  
) = 0;  

매개 변수

이 메서드는 매개 변수를 사용하지 않습니다.

스레드 보안

메서드는 ReleaseContainer 분배되는 구현자에게 스레드로부터 안전하지 않습니다.

설명

이 메서드의 동작은 구현에 따라 다릅니다. 다음 정보를 지침으로 사용해야 하지만 모든 시나리오에서 올바르지 않을 수 있습니다.

  • 대부분의 구현자는 라는 프라이빗 Boolean 값을 선언합니다. 기본값은 false 이고 기본 동작은 로 설정true되지 않습니다dispensed.dispensed 그러나 구현이 로 설정된 dispensedtrue경우 가 호출될 때 IDispensedHttpModuleContextContainer 포인터는 자체적으로 를 호출 delete 합니다.ReleaseContainer 그렇지 않으면 가 ReleaseContainer 빈 작업입니다.

  • 가 호출 IDispensedHttpModuleContextContainer 되면 IHttpStoredContext 포인터의 내부 배열을 열거하고 IHttpModuleContextContext::SetModuleContext 메서드를 사용하여 이전에 추가된 포인터에서 IHttpStoredContext::CleanupStoredContext 메서드를 호출합니다.delete 그런 다음 컨텍스트 컨테이너는 힙의 배열 메모리를 삭제하고 해당 배열을 NULL로 설정합니다.

예제

다음 예제에서는 인터페이스를 구현하는 라는 MyContainer 사용자 지정 클래스를 IDispensedHttpModuleContextContainer 보여 줍니다. 또한 라는 GetModuleContextContainer메서드를 구현하는 라는 MyClass 사용자 지정 클래스를 보여 줍니다. MyClass 는 포인터의 MyContainer 수명 동안 포인터를 관리합니다 MyClass .

// The MyContainer class implements the   
// IDispensedHttpModuleContextContainer interface.  
class MyContainer : public IDispensedHttpModuleContextContainer  
{  
public:  
    // The MyContainer method is the public  
    // constructor for the MyContainer class.  
    // Make this method protected if the   
    // MyContainer class is abstract.  
    // dispensed: true if the container should  
    // call delete this when the ReleaseContainer  
    // method is called.  
    MyContainer(bool dispensed = false)   
        : m_dispensed(dispensed)  
    {  
  
    }  
  
    // The ReleaseContainer method   
    // calls delete this if this container  
    // is dispensed.  
    virtual VOID ReleaseContainer(VOID)  
    {  
        if (m_dispensed)  
        {  
            delete this;  
        }  
    }  
  
    // Implement additional   
    // IDispensedHttpModuleContextContainer  
    // pure virtual methods if this class  
    // is not abstract.  
  
private:  
    // The MyContainer method is the private  
    // destructor for the MyContainer class.  
    // Make this method protected and virtual   
    // if the MyContainer class expects   
    // to be a class of derivation. This method   
    // should not be public because   
    // IDispensedHttpModuleContextContainer pointers  
    // should be disposed externally only by   
    // calling the ReleaseContainer method.  
    ~MyContainer()  
    {  
  
    }  
  
    // Specify a Boolean value for dispensing.  
    bool m_dispensed;  
};  
  
// Create the MyClass class.  
class MyClass  
{  
public:  
    // The MyClass method is the public  
    // constructor for the MyClass class.  
    MyClass()  
    {  
        m_container = new MyContainer;  
    }  
  
    // The MyClass method is the   
    // public virtual destructor   
    // for the MyClass class. This destructor  
    // calls ReleaseContainer on the internal  
    // IDispensedHttpModuleContextContainer  
    // pointer and sets that pointer to NULL.  
    virtual ~MyClass()  
    {  
        m_container->ReleaseContainer();  
        m_container = NULL;  
    }  
  
    // The GetModuleContextContainer method  
    // returns an IHttpModuleContextContainer  
    // pointer.  
    // return: a static upcast   
    // IDispensedHttpModuleContextContainer.  
    virtual IHttpModuleContextContainer*   
        GetModuleContextContainer(VOID)  
    {  
        return static_cast<IHttpModuleContextContainer*>  
            (m_container);  
    }  
  
    // Implement additional IHttpUrlInfo  
    // pure virtual methods if this class  
    // is not abstract.  
  
private:  
    // Specify a private  
    // IDispensedHttpModuleContextContainer  
    // pointer.  
    IDispensedHttpModuleContextContainer* m_container;  
};  

요구 사항

형식 Description
클라이언트 - Windows Vista의 IIS 7.0
- Windows 7의 IIS 7.5
- Windows 8의 IIS 8.0
- WINDOWS 10 IIS 10.0
서버 - Windows Server 2008의 IIS 7.0
- Windows Server 2008 R2의 IIS 7.5
- Windows Server 2012의 IIS 8.0
- Windows Server 2012 R2의 IIS 8.5
- WINDOWS SERVER 2016 IIS 10.0
제품 - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0
- IIS Express 7.5, IIS Express 8.0, IIS Express 10.0
헤더 Httpserv.h

참고 항목

IDispensedHttpModuleContextContainer 인터페이스
IHttpApplication::GetModuleContextContainer 메서드
IHttpConnection::GetModuleContextContainer 메서드
IHttpContext::GetModuleContextContainer 메서드
IHttpFileInfo::GetModuleContextContainer 메서드
IHttpModuleContextContainer 인터페이스
IHttpSite::GetModuleContextContainer 메서드
IHttpUrlInfo::GetModuleContextContainer 메서드
IMetadataInfo::GetModuleContextContainer 메서드