Exemplo n.º 1
0
 internal TU BaseRequest <TU>(HttpMethod method, object request, CallfireRestRoute <T> route, CfSoundFormat cfSoundFormat)
 {
     _soundFormat = cfSoundFormat;
     return(BaseRequest <TU>(method, request, route));
 }
 public CfGetRecordingData(object[] items, CfItemsChoiceType[] itemsElementNameField, CfSoundFormat format)
 {
     Items = items;
     ItemsElementNameField = itemsElementNameField;
     Format = format;
 }
 public CfGetSoundData(long id, CfSoundFormat format)
 {
     Id     = id;
     Format = format;
 }
Exemplo n.º 4
0
 public long CreateSound(CfCreateSound cfCreateSound, CfSoundFormat cfSoundFormat)
 {
     return(CallService.CreateSound(new CreateSound(cfCreateSound)));
 }
        public long CreateSound(CfCreateSound cfCreateSound, CfSoundFormat cfSoundFormat)
        {
            var resource = BaseRequest <ResourceReference>(HttpMethod.Post, new CreateSound(cfCreateSound), new CallfireRestRoute <Call>(null, CallRestRouteObjects.Sound, null), cfSoundFormat);

            return(resource.Id);
        }
 public CfGetRecordingData(object[] items, CfItemsChoiceType[] itemsElementNameField, CfSoundFormat format)
 {
     Items = items;
     ItemsElementNameField = itemsElementNameField;
     Format = format;
 }
 public long CreateSound(CfCreateSound cfCreateSound, CfSoundFormat cfSoundFormat)
 {
     return CallService.CreateSound(new CreateSound(cfCreateSound));
 }
 public CfGetSoundData(long id, CfSoundFormat format)
 {
     Id = id;
     Format = format;
 }