Skip to content

A simple .NET C# implementation of the Prowl notification service

Notifications You must be signed in to change notification settings

andrewbeaton/SendToProwl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#SentToProwl

A simple .NET C# implementation of the Prowl notification service.

Included is a basic command line application to send a notification.

###Class Usage

  var notification = new ProwlNotification()
  {
	  ApiKey = "xxxxxxxxxxxx",
	  Application = "Send To Prowl",
	  Event = "Test Notification",
	  Description = "Just testing notifications",
	  Priority = 1;
  };
  
  var client = new ProwlClient();
  client.SendNotification(notification);

###Command Line Usage

SendToProwl [OPTIONS]
   OPTIONS (required):
   -k key               The API key
   -a application       Application name
   -e event             Event (e.g. "Build Complete")
   -d description       A description, generally terse
   
   OPTIONS (optional)
   -u url               The Url to display
   -p priority          The notification priority 
                        (-2, -1, 0, 1, 2 (very low, moderate, normal, high, emergency))

###Command Line Example

SendToProwl.exe -k xxxxxxxxxxxx -a "Send To Prowl" -e "Test Notification" -d "Just testing notifications."

About

A simple .NET C# implementation of the Prowl notification service

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages