[ConfigurationPropertyAttribute(Name="Channel", 
   Options=ConfigurationPropertyOptions.None, 
   IsDefaultCollection=false, 
   IsRequired=false, 
   IsKey=false)]
public ILoggingChannel Channel {get; set;}
             
        
            
            'Declaration
 
<ConfigurationPropertyAttribute(Name="Channel", 
   Options=ConfigurationPropertyOptions.None, 
   IsDefaultCollection=False, 
   IsRequired=False, 
   IsKey=False)>
Public Property Channel As ILoggingChannel
             
        
            
            'Usage
 
Dim instance As ChannelElement
Dim value As ILoggingChannel
 
instance.Channel = value
 
value = instance.Channel
             
        
            
            [ConfigurationPropertyAttribute(Name="Channel", 
   Options=ConfigurationPropertyOptions.None, 
   IsDefaultCollection=false, 
   IsRequired=false, 
   IsKey=false)]
public:
property ILoggingChannel^ Channel {
   ILoggingChannel^ get();
   void set (    ILoggingChannel^ value);
}