// http://developers.facebook.com/docs/reference/api/group/
		public Group(string id, Reference owner, string name, enumPrivacy privacy, string icon, DateTime updatedTime)
		{
			this.ID          = id         ;
			this.Owner       = owner      ;
			this.Name        = name       ;
			this.Privacy     = privacy    ;
			this.Icon        = icon       ;
			this.UpdatedTime = updatedTime;
		}
 // http://developers.facebook.com/docs/reference/api/group/
 public Group(string id, Reference owner, string name, enumPrivacy privacy, string icon, DateTime updatedTime)
 {
     this.ID          = id;
     this.Owner       = owner;
     this.Name        = name;
     this.Privacy     = privacy;
     this.Icon        = icon;
     this.UpdatedTime = updatedTime;
 }
Beispiel #3
0
 // http://developers.facebook.com/docs/reference/api/event/
 public Event(String id, String name, Reference owner, enumPrivacy privacy, DateTime startTime, DateTime endTime, DateTime updatedTime)
 {
     this.ID          = id;
     this.Owner       = owner;
     this.Name        = name;
     this.StartTime   = startTime;
     this.EndTime     = endTime;
     this.Privacy     = privacy;
     this.UpdatedTime = updatedTime;
 }
		// http://developers.facebook.com/docs/reference/api/event/
		public Event(String id, String name, Reference owner, enumPrivacy privacy, DateTime startTime, DateTime endTime, DateTime updatedTime)
		{
			this.ID          = id         ;
			this.Owner       = owner      ;
			this.Name        = name       ;
			this.StartTime   = startTime  ;
			this.EndTime     = endTime    ;
			this.Privacy     = privacy    ;
			this.UpdatedTime = updatedTime;
		}
		// http://developers.facebook.com/docs/reference/api/album/
		public Album(String id, Reference from, String name, enumType type, String link, int count, enumPrivacy privacy, DateTime createdTime)
		{
			this.ID          = id         ;
			this.From        = from       ;
			this.Name        = name       ;
			this.Link        = link       ;
			this.Privacy     = privacy    ;
			this.Count       = count      ;
			this.Type        = type       ;
			this.CreatedTime = createdTime;
		}
 // http://developers.facebook.com/docs/reference/api/album/
 public Album(String id, Reference from, String name, enumType type, String link, int count, enumPrivacy privacy, DateTime createdTime)
 {
     this.ID          = id;
     this.From        = from;
     this.Name        = name;
     this.Link        = link;
     this.Privacy     = privacy;
     this.Count       = count;
     this.Type        = type;
     this.CreatedTime = createdTime;
 }