ElmcityUtils.TableStorage.WritePriorityLogMessage C# (CSharp) Method

WritePriorityLogMessage() public method

public WritePriorityLogMessage ( string type, string message, string data ) : TableStorageHttpResponse
type string
message string
data string
return TableStorageHttpResponse
        public TableStorageHttpResponse WritePriorityLogMessage(string type, string message, string data)
        {
            return WriteLogMessage (type, message, data, Configurator.azure_priority_log_table);
        }

Usage Example

Beispiel #1
0
 public static void PriorityLogMsg(string type, string title, string blurb, TableStorage ts)
 {
     title = MakeLogMsgTitle(title);
     ts.WritePriorityLogMessage(type, title, blurb);
 }