This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Control key ^ | |
; Alt key ! | |
; Shift key + | |
; Windows key # | |
; this must remain at top of file | |
SetTitleMatchMode 2 | |
;Allows for the script to be reloaded everytime it's saved | |
SetTimer,UPDATEDSCRIPT,1000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using MonoTouch.Foundation; | |
using MonoTouch.UIKit; | |
namespace AccessImageMetadata | |
{ | |
public class Application |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class AuthorizationQueryValidator : ODataQueryValidator | |
{ | |
public override void Validate(ODataQueryOptions options, ODataValidationSettings validationSettings) | |
{ | |
base.Validate(options, validationSettings); | |
CanAccess(options.Request.GetODataPath().EntitySet); | |
SelectExpandClause selectExpandClause = options.SelectExpand.SelectExpandClause; | |
IList<ExpandedNavigationSelectItem> expandedItems = GetExpandedProperties(selectExpandClause); | |
foreach (ExpandedNavigationSelectItem item in expandedItems) | |
{ |