ChannelServices.GetChannelSinkProperties Method
Returns a IDictionary of properties for a given proxy.
Namespace: System.Runtime.Remoting.Channels
Assembly: mscorlib (in mscorlib.dll)
[SecurityPermissionAttribute(SecurityAction.Demand, Flags = SecurityPermissionFlag.RemotingConfiguration)] public static IDictionary GetChannelSinkProperties( Object obj )
Parameters
- obj
- Type: System.Object
The proxy to retrieve properties for.
Return Value
Type: System.Collections.IDictionaryAn interface to the dictionary of properties, or null if no properties were found.
| Exception | Condition |
|---|---|
| SecurityException | At least one of the callers that is higher in the callstack does not have permission to configure remoting types and channels. |
// Get an IDictionary of properties for a given proxy. IDictionary myDictionary = ChannelServices. GetChannelSinkProperties(myProxy); ICollection myKeysCollection = myDictionary.Keys; object[] myKeysArray = new object[myKeysCollection.Count]; ICollection myValuesCollection = myDictionary.Values; object[] myValuesArray = new object[myValuesCollection.Count]; myKeysCollection.CopyTo(myKeysArray,0); myValuesCollection.CopyTo(myValuesArray,0); for(int iIndex=0;iIndex<myKeysArray.Length;iIndex++) { Console.WriteLine("Property Name : "+myKeysArray[iIndex]+ " value : "+myValuesArray[iIndex]); }
- SecurityPermission
For configuration of the remoting infrastructure. Demand value: SecurityAction.Demand; Permission value: SecurityPermissionFlag.RemotingConfiguration
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.