C# Class Facebook.Graph.Web.Mvc.SubscriptionController

Implements the basic behaviors necessary for a Controller class to handle incoming requests from the Graph server to handle subscription updates.
Inheritance: Controller
Afficher le fichier Open project: prabirshrestha/opengraph.net

Méthodes protégées

Méthode Description
OnErrorsReported ( string applicationName ) : void
OnPermissionsUpdated ( string applicationName, string userID, ExtendedPermissions permissions ) : void

OnUserUpdated ( string applicationName, string userID, string updatedProperties ) : void

Called when a User object is updated.

Private Methods

Méthode Description
Handler ( string challenge, string verify_token, object content, string applicationName ) : System.Web.Mvc.ActionResult

Method Details

OnErrorsReported() protected méthode

protected OnErrorsReported ( string applicationName ) : void
applicationName string
Résultat void

OnPermissionsUpdated() protected méthode

protected OnPermissionsUpdated ( string applicationName, string userID, ExtendedPermissions permissions ) : void
applicationName string
userID string
permissions ExtendedPermissions
Résultat void

OnUserUpdated() protected méthode

Called when a User object is updated.
protected OnUserUpdated ( string applicationName, string userID, string updatedProperties ) : void
applicationName string The name of the application, determined by the routing properties.
userID string The ID of the user who was updated.
updatedProperties string A list of properties that were updated for the user.
Résultat void