Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
Configure Method
 Configure Method (String, Boolean)
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
RemotingConfiguration..::.Configure Method (String, Boolean)

Reads the configuration file and configures the remoting infrastructure.

Namespace:  System.Runtime.Remoting
Assembly:  mscorlib (in mscorlib.dll)
Visual Basic (Declaration)
<SecurityPermissionAttribute(SecurityAction.Demand, Flags := SecurityPermissionFlag.RemotingConfiguration)> _
Public Shared Sub Configure ( _
    filename As String, _
    ensureSecurity As Boolean _
)
Visual Basic (Usage)
Dim filename As String
Dim ensureSecurity As Boolean

RemotingConfiguration.Configure(filename, ensureSecurity)
C#
[SecurityPermissionAttribute(SecurityAction.Demand, Flags = SecurityPermissionFlag.RemotingConfiguration)]
public static void Configure(
    string filename,
    bool ensureSecurity
)
Visual C++
[SecurityPermissionAttribute(SecurityAction::Demand, Flags = SecurityPermissionFlag::RemotingConfiguration)]
public:
static void Configure(
    String^ filename, 
    bool ensureSecurity
)
JScript
public static function Configure(
    filename : String, 
    ensureSecurity : boolean
)

Parameters

filename
Type: System..::.String
The name of the remoting configuration file. Can be nullNothingnullptra null reference (Nothing in Visual Basic).
ensureSecurity
Type: System..::.Boolean
If set to true security is required. If set to false, security is not required but still may be used.
ExceptionCondition
SecurityException

At least one of the callers higher in the callstack does not have permission to configure remoting types and channels.

Passing nullNothingnullptra null reference (Nothing in Visual Basic) as the filename parameter will cause default remoting initialization without requiring the existence of a configuration file. For more information about remoting and security see Security in Remoting

For configuration file syntax, see [<topic://gnconremotingsettingsschema>].

NoteNote:

Marshal-by-reference objects (MBRs) do not reside in memory forever. Instead, unless the type overrides MarshalByRefObject..::.InitializeLifetimeService to control its own lifetime policies, each MBR has a finite lifetime before the .NET Framework remoting system begins the process of deleting it and reclaiming the memory. For more information, see Lifetime Leases.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
See my 'RemoteAppDeployment' article on www.codeproject.com      Indrajeet Valera   |   Edit   |   Show History
For a fully working & reusable example of AssemblyResolve in C#, see my article on www.codeproject.com:

Deploy .NET thick client application assemblies to remote server
By Indrajeet Valera

http://www.codeproject.com/KB/miscctrl/RemoteAppDeployment.aspx

Uses .NET Remoting, AppDomain.CurrentDomain.Load as well.

Enjoy,
Indar
Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement | Site Feedback
Page view tracker