Tutorial by Topics: to

The anti-forgery token can be used to help protect your application against cross-site request forgery. To use this feature, call the AntiForgeryToken method from a form and add the ValidateAntiForgeryTokenAttribute attribute to the action method that you want to protect. Generates a hidden form fi...
The PHP Manual provides both a functional reference and a language reference along with explanations of PHP's major features. The PHP Manual, unlike most languages' documentation, encourages PHP developers to add their own examples and notes to each page of the documentation. This topic explains con...
A Custom Element in Aurelia is used to extend the basic set of HTML elements by feature-enriched, reusable components. A Custom Element normally exists out of two files, a View-Model based on Javasciprt, and a corresponding view written in HTML. Both files compose the HTML element which can then be ...
ParameterDetailsdecodeConverts URL value (string) to the value available in $stateParamsencodeConverts a value to the string that will be used in the URLequalsVerifies if two values are equal from the type's point of viewisChecks if the value can be used as defined parameter typepatternEnsures that...
Mockito is a java Mocking framework that aims at providing the ability to write clean an readable unit tests by using it's simple API. It differs from other mocking frameworks by leaving the expect-run-verify pattern that most other frameworks use. Instead it only knows one way to mock (non-final...
void expression; // Evaluates expression and discards return value +expression; // Attempt to convert expression to a number delete object.property; // Delete object's property delete object["property"]; // Delete object's property typeof operand; // Returns type of operand ~express...
This section provides an overview of what tomcat is, and why a developer might want to use it. It should also mention any large subjects within tomcat, and link out to the related topics. Since the Documentation for tomcat is new, you may need to create initial versions of those related topics. ...
Assuming a class named Class... type *ptr = &Class::member; // Point to static members only type Class::*ptr = &Class::member; // Point to non-static Class members For pointers to non-static class members, given the following two definitions: Class instance; Class *...
While there are schools of thought which make compelling arguments why unconstrained use of Singletons is a bad idea, e.g. Singleton on gameprogrammingpatterns.com, there are occasions when you might want to persist a GameObject in Unity over multiple Scenes (e.g. for seamless background music) wh...
$this->getSkinUrl('images/my-image.jpg'); images pathdetailsexample: 'images/my-images.jpg'path for image Get formatted images url and avoid theme dependences.
The Singleton design pattern is sometimes regarded as "Anti pattern". This is due to the fact that it has some problems. You have to decide for yourself if you think it is appropriate to use it. This topic has been discussed several times on StackOverflow. See: http://stackoverflow.c...
{Binding PropertyName} is equivalent to {Binding Path=PropertyName} {Binding Path=SomeProperty.SomeOtherProperty.YetAnotherProperty} {Binding Path=SomeListProperty[1]} ParameterDetailsPathSpecifies the path to bind to. If unspecified, binds to the DataContext itself.UpdateSourceTriggerSpec...

Page 7 of 51