ArcObjects Library Reference (Server)  

IServerContext.Remove Method

Remove an object from the server context's object dictionary.

[Visual Basic .NET]
Public Sub Remove ( _
    ByVal Name As String _
)
[C#]
public void Remove (
    string Name
);
[C++]
HRESULT Remove(
  BSTR Name
);
[C++]

Parameters

Name [in]   Name is a parameter of type BSTR

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

Remove and RemoveAll to remove object from a context that have been set using SetObject. Once an object it can no longer be retrieved using GetObject. Note that if you do not explicitly call Remove or RemoveAll, you can still not get references to objects set in the context after the context has been released.

See Also

IServerContext Interface