コード例 #1
0
 /// <summary>
 /// Initializes client properties.
 /// </summary>
 private void Initialize()
 {
     Accounts                   = new Accounts(this);
     Contacts                   = new Contacts(this);
     Sharepointsites            = new Sharepointsites(this);
     Entitydefinitions          = new Entitydefinitions(this);
     Globaloptionsetdefinitions = new Globaloptionsetdefinitions(this);
     BaseUri = new System.Uri("https://pillspressdev.api.crm3.dynamics.com/api/data/v8.2");
     SerializationSettings = new JsonSerializerSettings
     {
         Formatting            = Newtonsoft.Json.Formatting.Indented,
         DateFormatHandling    = Newtonsoft.Json.DateFormatHandling.IsoDateFormat,
         DateTimeZoneHandling  = Newtonsoft.Json.DateTimeZoneHandling.Utc,
         NullValueHandling     = Newtonsoft.Json.NullValueHandling.Ignore,
         ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize,
         ContractResolver      = new ReadOnlyJsonContractResolver(),
         Converters            = new  List <JsonConverter>
         {
             new Iso8601TimeSpanConverter()
         }
     };
     DeserializationSettings = new JsonSerializerSettings
     {
         DateFormatHandling    = Newtonsoft.Json.DateFormatHandling.IsoDateFormat,
         DateTimeZoneHandling  = Newtonsoft.Json.DateTimeZoneHandling.Utc,
         NullValueHandling     = Newtonsoft.Json.NullValueHandling.Ignore,
         ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize,
         ContractResolver      = new ReadOnlyJsonContractResolver(),
         Converters            = new List <JsonConverter>
         {
             new Iso8601TimeSpanConverter()
         }
     };
     CustomInitialize();
 }
コード例 #2
0
 /// <summary>
 /// Initializes client properties.
 /// </summary>
 private void Initialize()
 {
     Accounts         = new Accounts(this);
     Applicationtypes = new Applicationtypes(this);
     Businesscontacts = new Businesscontacts(this);
     Certificates     = new Certificates(this);
     Certificatetermsandconditionses = new Certificatetermsandconditionses(this);
     Customaddresses            = new Customaddresses(this);
     Customproducts             = new Customproducts(this);
     Equipmentlocations         = new Equipmentlocations(this);
     Equipments                 = new Equipments(this);
     Incidentbusinesscontactset = new Incidentbusinesscontactset(this);
     Locationequipmentset       = new Locationequipmentset(this);
     Locations              = new Locations(this);
     Riskassessments        = new Riskassessments(this);
     Termsconditionspresets = new Termsconditionspresets(this);
     Contacts  = new Contacts(this);
     Incidents = new Incidents(this);
     Invoices  = new Invoices(this);
     Msdyncustomaddressknowledgearticlset = new Msdyncustomaddressknowledgearticlset(this);
     Msdyncustomaddressknowledgebasereset = new Msdyncustomaddressknowledgebasereset(this);
     Sharepointdocumentlocations          = new Sharepointdocumentlocations(this);
     Sharepointsites            = new Sharepointsites(this);
     Entitydefinitions          = new Entitydefinitions(this);
     Globaloptionsetdefinitions = new Globaloptionsetdefinitions(this);
     BaseUri = new System.Uri("https://pillspressdev.api.crm3.dynamics.com/api/data/v8.2");
     SerializationSettings = new JsonSerializerSettings
     {
         Formatting            = Newtonsoft.Json.Formatting.Indented,
         DateFormatHandling    = Newtonsoft.Json.DateFormatHandling.IsoDateFormat,
         DateTimeZoneHandling  = Newtonsoft.Json.DateTimeZoneHandling.Utc,
         NullValueHandling     = Newtonsoft.Json.NullValueHandling.Ignore,
         ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize,
         ContractResolver      = new ReadOnlyJsonContractResolver(),
         Converters            = new  List <JsonConverter>
         {
             new Iso8601TimeSpanConverter()
         }
     };
     DeserializationSettings = new JsonSerializerSettings
     {
         DateFormatHandling    = Newtonsoft.Json.DateFormatHandling.IsoDateFormat,
         DateTimeZoneHandling  = Newtonsoft.Json.DateTimeZoneHandling.Utc,
         NullValueHandling     = Newtonsoft.Json.NullValueHandling.Ignore,
         ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize,
         ContractResolver      = new ReadOnlyJsonContractResolver(),
         Converters            = new List <JsonConverter>
         {
             new Iso8601TimeSpanConverter()
         }
     };
     CustomInitialize();
 }
 /// <summary>
 /// Update entity in GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='metadataId'>
 /// key: MetadataId
 /// </param>
 /// <param name='body'>
 /// New property values
 /// </param>
 public static void Update(this IGlobaloptionsetdefinitions operations, string metadataId, MicrosoftDynamicsCRMOptionSetMetadataBase body)
 {
     operations.UpdateAsync(metadataId, body).GetAwaiter().GetResult();
 }
 /// <summary>
 /// Delete entity from GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='metadataId'>
 /// key: MetadataId
 /// </param>
 /// <param name='ifMatch'>
 /// ETag
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task DeleteAsync(this IGlobaloptionsetdefinitions operations, string metadataId, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.DeleteWithHttpMessagesAsync(metadataId, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
 /// <summary>
 /// Delete entity from GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='metadataId'>
 /// key: MetadataId
 /// </param>
 /// <param name='ifMatch'>
 /// ETag
 /// </param>
 public static void Delete(this IGlobaloptionsetdefinitions operations, string metadataId, string ifMatch = default(string))
 {
     operations.DeleteAsync(metadataId, ifMatch).GetAwaiter().GetResult();
 }
 /// <summary>
 /// Get entity from GlobalOptionSetDefinitions by key
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='metadataId'>
 /// key: MetadataId
 /// </param>
 /// <param name='select'>
 /// Select properties to be returned
 /// </param>
 /// <param name='expand'>
 /// Expand related entities
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <MicrosoftDynamicsCRMOptionSetMetadataBase> GetByKeyAsync(this IGlobaloptionsetdefinitions operations, string metadataId, IList <string> select = default(IList <string>), IList <string> expand = default(IList <string>), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetByKeyWithHttpMessagesAsync(metadataId, select, expand, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Get entity from GlobalOptionSetDefinitions by key
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='metadataId'>
 /// key: MetadataId
 /// </param>
 /// <param name='select'>
 /// Select properties to be returned
 /// </param>
 /// <param name='expand'>
 /// Expand related entities
 /// </param>
 public static MicrosoftDynamicsCRMOptionSetMetadataBase GetByKey(this IGlobaloptionsetdefinitions operations, string metadataId, IList <string> select = default(IList <string>), IList <string> expand = default(IList <string>))
 {
     return(operations.GetByKeyAsync(metadataId, select, expand).GetAwaiter().GetResult());
 }
コード例 #8
0
 /// <summary>
 /// Get entities from GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='top'>
 /// </param>
 /// <param name='skip'>
 /// </param>
 /// <param name='search'>
 /// </param>
 /// <param name='filter'>
 /// </param>
 /// <param name='count'>
 /// </param>
 /// <param name='orderby'>
 /// Order items by property values
 /// </param>
 /// <param name='select'>
 /// Select properties to be returned
 /// </param>
 /// <param name='expand'>
 /// Expand related entities
 /// </param>
 /// <param name='customHeaders'>
 /// Headers that will be added to request.
 /// </param>
 public static HttpOperationResponse <MicrosoftDynamicsCRMOptionSetMetadataBaseCollection> GetWithHttpMessages(this IGlobaloptionsetdefinitions operations, int?top = default(int?), int?skip = default(int?), string search = default(string), string filter = default(string), bool?count = default(bool?), IList <string> orderby = default(IList <string>), IList <string> select = default(IList <string>), IList <string> expand = default(IList <string>), Dictionary <string, List <string> > customHeaders = null)
 {
     return(operations.GetWithHttpMessagesAsync(top, skip, search, filter, count, orderby, select, expand, customHeaders, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Get entities from GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='top'>
 /// </param>
 /// <param name='skip'>
 /// </param>
 /// <param name='search'>
 /// </param>
 /// <param name='filter'>
 /// </param>
 /// <param name='count'>
 /// </param>
 /// <param name='orderby'>
 /// Order items by property values
 /// </param>
 /// <param name='select'>
 /// Select properties to be returned
 /// </param>
 /// <param name='expand'>
 /// Expand related entities
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <GetOKResponseModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModel> GetAsync(this IGlobaloptionsetdefinitions operations, int?top = default(int?), int?skip = default(int?), string search = default(string), string filter = default(string), bool?count = default(bool?), IList <string> orderby = default(IList <string>), IList <string> select = default(IList <string>), IList <string> expand = default(IList <string>), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetWithHttpMessagesAsync(top, skip, search, filter, count, orderby, select, expand, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
コード例 #10
0
 /// <summary>
 /// Get entities from GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='top'>
 /// </param>
 /// <param name='skip'>
 /// </param>
 /// <param name='search'>
 /// </param>
 /// <param name='filter'>
 /// </param>
 /// <param name='count'>
 /// </param>
 /// <param name='orderby'>
 /// Order items by property values
 /// </param>
 /// <param name='select'>
 /// Select properties to be returned
 /// </param>
 /// <param name='expand'>
 /// Expand related entities
 /// </param>
 public static MicrosoftDynamicsCRMOptionSetMetadataBaseCollection Get(this IGlobaloptionsetdefinitions operations, int?top = default(int?), int?skip = default(int?), string search = default(string), string filter = default(string), bool?count = default(bool?), IList <string> orderby = default(IList <string>), IList <string> select = default(IList <string>), IList <string> expand = default(IList <string>))
 {
     return(operations.GetAsync(top, skip, search, filter, count, orderby, select, expand).GetAwaiter().GetResult());
 }
コード例 #11
0
 /// <summary>
 /// Delete entity from GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='metadataId'>
 /// key: MetadataId of OptionSetMetadataBase
 /// </param>
 /// <param name='ifMatch'>
 /// ETag
 /// </param>
 /// <param name='customHeaders'>
 /// Headers that will be added to request.
 /// </param>
 public static HttpOperationResponse DeleteWithHttpMessages(this IGlobaloptionsetdefinitions operations, string metadataId, string ifMatch = default(string), Dictionary <string, List <string> > customHeaders = null)
 {
     return(operations.DeleteWithHttpMessagesAsync(metadataId, ifMatch, customHeaders, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult());
 }
コード例 #12
0
 /// <summary>
 /// Update entity in GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='metadataId'>
 /// key: MetadataId of OptionSetMetadataBase
 /// </param>
 /// <param name='body'>
 /// New property values
 /// </param>
 /// <param name='customHeaders'>
 /// Headers that will be added to request.
 /// </param>
 public static HttpOperationResponse UpdateWithHttpMessages(this IGlobaloptionsetdefinitions operations, string metadataId, MicrosoftDynamicsCRMOptionSetMetadataBase body, Dictionary <string, List <string> > customHeaders = null)
 {
     return(operations.UpdateWithHttpMessagesAsync(metadataId, body, customHeaders, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult());
 }
コード例 #13
0
 /// <summary>
 /// Get entity from GlobalOptionSetDefinitions by key
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='metadataId'>
 /// key: MetadataId of OptionSetMetadataBase
 /// </param>
 /// <param name='select'>
 /// Select properties to be returned
 /// </param>
 /// <param name='expand'>
 /// Expand related entities
 /// </param>
 /// <param name='customHeaders'>
 /// Headers that will be added to request.
 /// </param>
 public static HttpOperationResponse <MicrosoftDynamicsCRMOptionSetMetadataBase> GetByKeyWithHttpMessages(this IGlobaloptionsetdefinitions operations, string metadataId, IList <string> select = default(IList <string>), IList <string> expand = default(IList <string>), Dictionary <string, List <string> > customHeaders = null)
 {
     return(operations.GetByKeyWithHttpMessagesAsync(metadataId, select, expand, customHeaders, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult());
 }
コード例 #14
0
 /// <summary>
 /// Add new entity to GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='body'>
 /// New entity
 /// </param>
 /// <param name='prefer'>
 /// Required in order for the service to return a JSON representation of the
 /// object.
 /// </param>
 /// <param name='customHeaders'>
 /// Headers that will be added to request.
 /// </param>
 public static HttpOperationResponse <MicrosoftDynamicsCRMOptionSetMetadataBase> CreateWithHttpMessages(this IGlobaloptionsetdefinitions operations, MicrosoftDynamicsCRMOptionSetMetadataBase body, string prefer = "return=representation", Dictionary <string, List <string> > customHeaders = null)
 {
     return(operations.CreateWithHttpMessagesAsync(body, prefer, customHeaders, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Update entity in GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='metadataId'>
 /// key: MetadataId
 /// </param>
 /// <param name='body'>
 /// New property values
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task UpdateAsync(this IGlobaloptionsetdefinitions operations, string metadataId, MicrosoftDynamicsCRMOptionSetMetadataBase body, CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.UpdateWithHttpMessagesAsync(metadataId, body, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
 /// <summary>
 /// Get entities from GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='top'>
 /// </param>
 /// <param name='skip'>
 /// </param>
 /// <param name='search'>
 /// </param>
 /// <param name='filter'>
 /// </param>
 /// <param name='count'>
 /// </param>
 /// <param name='orderby'>
 /// Order items by property values
 /// </param>
 /// <param name='select'>
 /// Select properties to be returned
 /// </param>
 /// <param name='expand'>
 /// Expand related entities
 /// </param>
 public static GetOKResponseModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModelModel Get(this IGlobaloptionsetdefinitions operations, int?top = default(int?), int?skip = default(int?), string search = default(string), string filter = default(string), bool?count = default(bool?), IList <string> orderby = default(IList <string>), IList <string> select = default(IList <string>), IList <string> expand = default(IList <string>))
 {
     return(operations.GetAsync(top, skip, search, filter, count, orderby, select, expand).GetAwaiter().GetResult());
 }
コード例 #17
0
 /// <summary>
 /// Initializes client properties.
 /// </summary>
 private void Initialize()
 {
     Accounts = new Accounts(this);
     Actregulationreferences = new Actregulationreferences(this);
     Applicationtypes        = new Applicationtypes(this);
     Areas                                = new Areas(this);
     Businesscontacts                     = new Businesscontacts(this);
     Cecontacts                           = new Cecontacts(this);
     Cecontacttypes                       = new Cecontacttypes(this);
     Certificateapprovedproducts          = new Certificateapprovedproducts(this);
     Certificates                         = new Certificates(this);
     Certificatetermsandconditionses      = new Certificatetermsandconditionses(this);
     Complaintcecontactset                = new Complaintcecontactset(this);
     Complaints                           = new Complaints(this);
     Customaddresses                      = new Customaddresses(this);
     Customproducts                       = new Customproducts(this);
     Customusers                          = new Customusers(this);
     Equipmentlocations                   = new Equipmentlocations(this);
     Equipments                           = new Equipments(this);
     Incidentbusinesscontactset           = new Incidentbusinesscontactset(this);
     Inspectionactregulationrefset        = new Inspectionactregulationrefset(this);
     Inspectioninspectionchecklset        = new Inspectioninspectionchecklset(this);
     Inspectionchecklistactreguset        = new Inspectionchecklistactreguset(this);
     Inspectionchecklists                 = new Inspectionchecklists(this);
     Inspectionownershipcategories        = new Inspectionownershipcategories(this);
     Inspectionprocessflows               = new Inspectionprocessflows(this);
     Inspections                          = new Inspections(this);
     Investigations                       = new Investigations(this);
     Investigationstepcecontactset        = new Investigationstepcecontactset(this);
     Investigationsteps                   = new Investigationsteps(this);
     Locationequipmentset                 = new Locationequipmentset(this);
     Locations                            = new Locations(this);
     Postalcodes                          = new Postalcodes(this);
     Regions                              = new Regions(this);
     Riskassessments                      = new Riskassessments(this);
     Roles                                = new Roles(this);
     Termsconditionspresets               = new Termsconditionspresets(this);
     Violationtickets                     = new Violationtickets(this);
     Contacts                             = new Contacts(this);
     Incidents                            = new Incidents(this);
     Invoices                             = new Invoices(this);
     Msdyncustomaddressknowledgearticlset = new Msdyncustomaddressknowledgearticlset(this);
     Msdyncustomaddressknowledgebasereset = new Msdyncustomaddressknowledgebasereset(this);
     Sharepointdocumentlocations          = new Sharepointdocumentlocations(this);
     Sharepointsites                      = new Sharepointsites(this);
     Entitydefinitions                    = new Entitydefinitions(this);
     Globaloptionsetdefinitions           = new Globaloptionsetdefinitions(this);
     BaseUri                              = new System.Uri("https://wsgw.dev.jag.gov.bc.ca/pillpress/dev/api/data/v8.2");
     SerializationSettings                = new JsonSerializerSettings
     {
         Formatting            = Newtonsoft.Json.Formatting.Indented,
         DateFormatHandling    = Newtonsoft.Json.DateFormatHandling.IsoDateFormat,
         DateTimeZoneHandling  = Newtonsoft.Json.DateTimeZoneHandling.Utc,
         NullValueHandling     = Newtonsoft.Json.NullValueHandling.Ignore,
         ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize,
         ContractResolver      = new ReadOnlyJsonContractResolver(),
         Converters            = new  List <JsonConverter>
         {
             new Iso8601TimeSpanConverter()
         }
     };
     DeserializationSettings = new JsonSerializerSettings
     {
         DateFormatHandling    = Newtonsoft.Json.DateFormatHandling.IsoDateFormat,
         DateTimeZoneHandling  = Newtonsoft.Json.DateTimeZoneHandling.Utc,
         NullValueHandling     = Newtonsoft.Json.NullValueHandling.Ignore,
         ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize,
         ContractResolver      = new ReadOnlyJsonContractResolver(),
         Converters            = new List <JsonConverter>
         {
             new Iso8601TimeSpanConverter()
         }
     };
     CustomInitialize();
 }
 /// <summary>
 /// Add new entity to GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='body'>
 /// New entity
 /// </param>
 /// <param name='prefer'>
 /// Required in order for the service to return a JSON representation of the
 /// object.
 /// </param>
 public static MicrosoftDynamicsCRMOptionSetMetadataBase Create(this IGlobaloptionsetdefinitions operations, MicrosoftDynamicsCRMOptionSetMetadataBase body, string prefer = "return=representation")
 {
     return(operations.CreateAsync(body, prefer).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Add new entity to GlobalOptionSetDefinitions
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='body'>
 /// New entity
 /// </param>
 /// <param name='prefer'>
 /// Required in order for the service to return a JSON representation of the
 /// object.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <MicrosoftDynamicsCRMOptionSetMetadataBase> CreateAsync(this IGlobaloptionsetdefinitions operations, MicrosoftDynamicsCRMOptionSetMetadataBase body, string prefer = "return=representation", CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.CreateWithHttpMessagesAsync(body, prefer, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }