SalesBuy
1-855-856-7678
Technical SupportSupport
/** @property */ /** @attribute CompilerGeneratedAttribute() */ public LogLevel get_LogLevelFilter () /** @property */ /** @attribute CompilerGeneratedAttribute() */ public void set_LogLevelFilter (LogLevel value)
CompilerGeneratedAttribute public function get LogLevelFilter () : LogLevel CompilerGeneratedAttribute public function set LogLevelFilter (value : LogLevel)
The LogLevelFilter property specifies a LogLevel value by which to filter diagnostic data. If the logging level is set to Undefined, all data is transferred regardless of logging level.
Example
The following code snippet specifies that only error-level logs should be transferred:
// Specify the on-demand transfer options for the diagnostic data. OnDemandTransferOptions transferOptions = new OnDemandTransferOptions(); // Specify only error-level logs. transferOptions.LogLevelFilter = LogLevel.Error;