Office365Tasks Class
Properties Methods Events Config Settings Errors
The Office365Tasks class provides an easy way to manage todo tasks in Microsoft 365.
Syntax
Office365Tasks
Remarks
This class provides an easy to use interface for Office365 using the Microsoft Graph API v1.0. To use the class, first set the Authorization property to a valid OAuth token. The Office365Tasks class can be used for creating new tasks/task lists/checklist items; retrieving, updating, or deleting existing tasks/task lists/checklist items; and several other functionalities supported by the Microsoft Graph API.
This class requires authentication via OAuth 2.0. First, perform OAuth authentication using the OAuth property to set the appropriate fields for the chosen ClientProfile and GrantType.
The class has the following defaults:
Authorization Server URL | "https://login.microsoftonline.com/common/oauth2/v2.0/authorize" |
Token Server URL | "https://login.microsoftonline.com/common/oauth2/v2.0/token" |
Scopes | "offline_access mail.readwrite mail.send user.read" |
Additionally, depending on how the application is registered (Ex. Multi-tenant) and what GrantType is selected (Ex. Client Credentials and Password), it may be required to use the tenant ID rather than "common" in the ServerAuthURL and ServerTokenURL fields. In the case of Client Credentials and Password grant types, it is also required to use the "default" scopes of the app registration. See below for examples of the modified URLs and scopes:
Authorization Server URL | "https://login.microsoftonline.com/{TENANT_ID}/oauth2/v2.0/authorize" |
Token Server URL | "https://login.microsoftonline.com/{TENANT_ID}/oauth2/v2.0/token" |
Scopes | "https://graph.microsoft.com/.default" |
Below is a brief description of the different ClientProfile and GrantType values that are supported by this class. For a more in-depth description of what needs to be set, refer to the service documentation.
Application Profile
This profile encompasses the most basic grant types that OAuth supports. When this profile is set, all the requests and response handling is done by the class. Depending on the grant type, this may involve launching a browser so a user can login to authenticate with a authorization server. It may also involve starting an embedded web server to receive a response from a redirect.
To start the authentication and authorization process, the Authorize method should be called. If the authorization and authentication was successful, then the AccessToken field will be populated. Additionally, if a refresh token was provided the RefreshToken field will be populated as well. These values of the fields are for informational purposes. The class will also cache these tokens along with when the AccessToken will be expired. When a method that makes requests to the service provider is called or the Authorize method is called the class will automatically check to see if the access token is expired. If it is, it will then automatically try to get a new AccessToken. If the Authorize method was not used and user interaction would be required, the class will throw an error which can be caught. When user interaction is needed depends on what grant type is set in the GrantType field. To force the component to only check the access token when the Authorize method is called, the OAuthAutomaticRefresh configuration setting can be set to false.
A brief description of the supported values for the GrantType field are below. For more information, see the service documentation.
Authorization Code
When using the Authorization Code grant type, the class will use an authorization code to get an access token. For this GrantType the class expects a ClientId, ClientSecret, ServerAuthURL, and ServerTokenURL to be set. When the Authorize method is called, the component will start the embedded web server and launch the browser so the user can authorize the application. Once the user authorizes, the service provider will redirect them to the embedded web server and the class will parse the authorization code, setting the AuthorizationCode field, from the redirect. Immediately, the class will make a request to the token server to exchange the authorization code for an access token. The token server will return an access token and possibly a refresh token. If the RefreshToken field is set, or a refresh token is cached, then the class will not launch the browser and use the refresh token in its request to the token server instead of an authorization code.
Example:
Office365Tasks office365task = new Office365Tasks();
office365task.OAuth.ClientProfile = CloudOAuthClientProfiles.cocpApplication;
office365task.OAuth.GrantType = OAuthSettingsGrantTypes.cogtAuthorizationCode;
office365task.OAuth.ClientId = CLIENT_ID;
office365task.OAuth.ClientSecret = CLIENT_SECRET;
office365task.Authorize();
Client Credentials
When using the Client Credentials grant type, the class will act as a service instead of authorizing and authenticating as a user. This allows for the class to avoid user interaction. This is typically used when running in an application that can not have user access. This grant type requires additional set up to be done in the service providers portal before it can be used. For this GrantType the class expects a ClientId, ClientSecret, and ServerTokenURL to be set. When the Authorize method is called, the component will make a request to the token server for an access token. The token server will return an access token if the application has the authorization to do so. When this access token is expired, the component will automatically (see above for detailed description) make a new request to get a fresh one.
Implicit
Note: This grant type is considered insecure and should only be used when necessary.
When using the Implicit grant type, the class will request the authorization server to get an access token. For this GrantType the class expects a ClientId, ClientSecret, and ServerAuthURL to be set. When the Authorize method is called, the component will start the embedded web server and launch the browser so the user can authorize the application. Once the user authorizes, the service provider will redirect them to the embedded web server and the class will parse the access token from the redirect.
A disadvantage of the grant type is that can not use a refresh token to silently get a new access token. Most service providers offer a way to silently get a new access token. See the service documentation for specifics. This means the class will not be able to automatically get a fresh token once it expires.
Password
Note: This grant type is considered insecure and should only be used when necessary.
When using the Resource Owner Password Credentials grant type, the class will authenticate as the resource owner. This allows for the class to avoid user interaction. This grant type often has specific limitations put on it by the service provider. See the service documentation for more details.
For this GrantType the class requires OAuthPasswordGrantUsername, ClientSecret, and ServerTokenURL to be set. The ClientSecret should be set to the password of the account instead of a typical secret. In some cases, the ClientId also needs to be set. When the Authorize method is called, the component will make a request to the token server for an access token using the username and password. The token server will return an access token if the authentication was successful. When this access token is expired, the component will automatically (see above for detailed description) make a new request to get a fresh one.
Web Profile
This profile is similar to setting the class to the Application profile and Authorization Code grant type except the class will not launch the browser. It is typically used in situations where there is a back-end that is supporting some front end. This profile expects that ClientId, ClientSecret, ServerAuthURL, ServerTokenURL, and the ReturnURL fields to be set. Before calling the Authorize method, the WebAuthURL field should be queried to get a URL. This URL should be used to redirect the user to the authorization page for the service provider. The redirect_uri parameter of this URL is mapped to the ReturnURL field. The ReturnURL field should be set to some web server that will parse the authorization code out of the query parameter from the redirect. Once the authorization code is parsed, it should be passed back to the server where it is then set to the AuthorizationCode field. Once that is set, the Authorize method can be called to exchange the authorization code for an access token and refresh token if provided. The class will then cache these values like normal and use them to make requests. If the RefreshToken field is set, or a refresh token is cached, then the Authorize method can immediately be called to make a request to the token server to get a new access token.
External OAuth Support
For complex profiles or grant types, or for more control of the flow, it is possible to perform OAuth authentication using the OAuth class or a separate process. Once complete you should have an authorization string which looks like:Bearer ACCESS_TOKEN_VALUE
Assign this value to the Authorization property before attempting any operations. Setting the Authorization property will cause the class to ignore the values set in the OAuth property.
For Example:
Oauth oauth = new Oauth();
oauth.ClientId = "CLIENT_ID";
oauth.ClientSecret = "CLIENT_SECRET";
oauth.ServerAuthURL = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize";
oauth.ServerTokenURL = "https://login.microsoftonline.com/common/oauth2/v2.0/token";
oauth.AuthorizationScope = "offline_access user.read mail.readwrite mail.send mailboxsettings.readwrite user.readwrite Contacts.Read Contacts.ReadWrite";
oauth.GrantType = OauthGrantTypes.ogtAuthorizationCode;
office365task.Authorization = oauth.GetAuthorization();
Consult the documentation for the service for more information about supported scope values and more details on OAuth authentication.
Creating a Task List
To create a task list using the Office365Tasks components we make use of the CreateTaskList method. The CreateTaskList method will create a new task list with a name specified through the name parameter.
Creating a task list:
office365task.CreateTaskList("My tasklist");
After creating a task list with the basic information, select the task list to be edited in the TaskLists collection, edit its fields and make a call to the UpdateTaskList method. To edit the newly created task list select the first task list in the collection.
Example (Update The First Task List Of The Collection)
// Set a new name for the newly created task list
office365task.TaskLists[0].DisplayName = "new name";
office365task.UpdateTaskList(0);
Listing Task Lists
Information about task lists fetched by the component can be accessed through the members of the TaskLists properties. The TaskLists properties is populated when the ListTaskLists method is called.
The ListTaskLists method will list the task lists and make the TaskListList event to fire with the appropriate data about the task lists received.
By default, the component will fetch one page of 100 task lists when ListTaskLists is called. If additional task lists remain, the ListTaskListsMarker property will be populated, it contains the nextPageToken that will be included in the next request as a parameter if ListTaskLists is then called again, if called the next page of task lists will be fetched. The example below populates the TaskLists properties with all the task lists associated with the account.
do
{
office365task.ListTaskLists();
} while (office365task.Config("ListTaskListsMarker").Length > 0);
The task lists page size may also be changed by using the TaskListsPageSize configuration setting.
Deleting a Task List
To delete a task list use the DeleteTaskList method, provide the Id of the task list as the argument. The task list will stay in the TaskLists collection until ListTaskLists method is called again.
Example (Delete Task List)
// List task lists and deleting the task list named "new name"
office365task.ListTaskLists();
for (int i = 0; i < office365task.TaskLists.Count; i++)
{
if (office365task.TaskLists[i].DisplayName == "new name")
{
office365task.DeleteTaskList(office365task.TaskLists[i].Id);
break;
}
// Note: the component would let you name more than one task list with the same name so the example would delete the first encounter with the task list that has the specified name
}
Creating a Task
To create a task using the Office365Tasks components we make use of the CreateTask method. The CreateTask method will create a new task with a name specified through the subject parameter inside the task list specified through the taskListId parameter.
Creating a task:
office365task.CreateTaskList("My task list");
office365task.CreateTask("My task", office365task.TaskLists[0].Id); //creating a task named "My task" inside the "My task list" task list
After creating a task with the basic information, select the task to be edited in the Tasks collection, edit its fields and make a call to the UpdateTask method. To edit the newly created task select the first task in the collection.
Example (Update The First Task Of The Collection)
// Set properties to update
office365task.Tasks[0].Title = "new title";
office365task.Tasks[0].Categories = "new category";
office365task.Tasks[0].Importance = TOTImportances.otiNormal;
office365task.Tasks[0].IsReminderOn = true;
office365task.UpdateTask(0);
Listing Tasks
Information about tasks fetched by the component can be accessed through the members of the Tasks properties. The Tasks properties is populated when the ListTasks method is called.
The ListTasks method will list the tasks inside the task list specified through the taskListId parameter and make the TaskList event to fire with the appropriate data about the tasks received.
By default, the component will fetch one page of 100 tasks when ListTasks is called. If additional tasks remain, the ListTasksMarker property will be populated, it contains the nextPageToken that will be included in the next request as a parameter if ListTasks is then called again, if called the next page of tasks will be fetched. The example below populates the Tasks properties with all the tasks associated with a task list.
do
{
office365task.ListTasks(office365task.TaskLists[0].Id);
} while(office365task.ListTasksMarker.Length > 0)
Deleting a Task
To delete a task use the DeleteTask method, provide the Id of the task list where the task belongs to and the Id of the task you want to delete as arguments. The task will stay in the Tasks collection until ListTasks method is called again.
Example (Delete Task)
// List tasks and deleting the task named "new title"
office365task.ListTasks(office365task.TaskLists[0].Id);
for (int i = 0; i < office365task.Tasks.Count; i++)
{
if (office365task.Tasks[i].Title == "new title")
{
office365task.DeleteTask(office365task.TaskLists[0].Id, office365task.Task[i].Id);
break;
}
// Note: the component would let you name more than one task with the same name so the example would delete the first encounter with the task that has the specified name
}
Creating a Checklist Item
To create a checklist item using the Office365Tasks components we make use of the CreateCheckListItem. The CreateCheckListItem method will create a new checklist item with a name specified through the name parameter belonging to a task specified through the taskId parameter inside the task list specified through the taskListId parameter.
Creating a checklist item:
office365task.CreateTaskList("My task list");
office365task.CreateTask("My task", office365task.TaskLists[0].Id); //creating a task named "My task" inside the "My task list" task list
office365task.CreateCheckListItem("My checklist item", office365task.TaskLists[0].Id, office365task.Tasks[0].Id); // creating a checklist item named "My checklist item" inside the "My task" task
After creating a checklist item with the basic information, select the checklist item to be edited in the CheckListItems collection, edit its fields and make a call to the UpdateCheckListItem method. To edit the newly created checklist item select the first checklist item in the collection.
Example (Update The First checklist item Of The collection)
// Set properties to update
office365task.CheckListItems[0].DisplayName = "new name";
office365task.CheckListItems[0].IsChecked= true;
office365task.UpdateCheckListItem(0);
Listing Checklist Items
Information about checklist item fetched by the component can be accessed through the members of the CheckListItems properties. The CheckListItems properties is populated when the ListCheckListItems method is called.
The ListCheckListItems method will list the checklist items belonging to a task specified through the taskId inside the task list specified through the taskListId parameter and make the CheckListItemList event to fire with the appropriate data about the checklist items received.
office365task.ListCheckListItems(office365task.TaskLists[0].Id, office365task.Tasks[0].Id);
Deleting a Checklist Item
To delete a checklist item use the DeleteCheckListItem method, provide the Id of the task list where the task that has the checklist item you want to delete is, the id of the task that has the checklist item you want to delete and finally the Id of the checklist item you want to delete as arguments. The checklist item will stay in the CheckListItems collection until ListCheckListItems method is called again.
Example (Delete Checklist Item)
// List checklist items and deleting the checklist item named "new name"
office365task.ListCheckListItems(office365task.TaskLists[0].Id, office365task.Tasks[0].Id);
for (int i = 0; i < office365task.CheckListItems.Count; i++)
{
if (office365task.CheckListItems[i].DisplayName == "new name")
{
office365task.DeleteCheckListItem(office365task.TaskLists[0].Id, office365task.Tasks[0].Id, office365task.CheckListItems[i].Id);
break;
}
// Note: the component would let you name more than one checklist item with the same name so the example would delete the first encounter with the checklist item that has the specified name
}
Property List
The following is the full list of the properties of the class with short descriptions. Click on the links for further details.
Attachments | Collection of attachments listed by the server. |
Authorization | An OAuth Authorization String. |
CheckListItems | The collection of subtasks listed by the server. |
Firewall | A set of properties related to firewall access. |
ListTasksMarker | The page marker for listing tasks. |
OAuth | This property holds the OAuth Settings. |
Proxy | A set of properties related to proxy access. |
SSLAcceptServerCert | Instructs the class to unconditionally accept the server certificate that matches the supplied certificate. |
SSLCert | The certificate to be used during Secure Sockets Layer (SSL) negotiation. |
SSLProvider | The Secure Sockets Layer/Transport Layer Security (SSL/TLS) implementation to use. |
SSLServerCert | The server certificate for the last established connection. |
TaskLists | The collection of task lists listed by the server. |
Tasks | The collection of tasks listed by the server. |
Method List
The following is the full list of the methods of the class with short descriptions. Click on the links for further details.
AddAttachment | Adds a file attachment to an existing task. |
Authorize | Get the authorization string required to access the protected resource. |
Config | Sets or retrieves a configuration setting. |
CreateCheckListItem | Creates a subtask. |
CreateTask | Creates a task. |
CreateTaskList | Creates a new task list. |
DeleteAttachment | Deletes an attachment. |
DeleteCheckListItem | Deletes a subtask. |
DeleteTask | Deletes a task. |
DeleteTaskList | Deletes a task list. |
GetCheckListItem | Retrieves the subtask by Id. |
GetTask | Retrieves the task by Id. |
GetTaskField | Retrieves the task property value by JSONPath. |
Interrupt | Interrupt the current method. |
ListAttachments | Lists all of a task's attachments. |
ListCheckListItems | Lists the subtasks. |
ListTaskLists | Lists the task lists. |
ListTasks | Lists the tasks. |
Reset | This method will reset the class. |
RetrieveAttachment | Retrieves a task's attachment. |
SendCustomRequest | Send a custom HTTP request. |
SetAttachmentInStream | Sets an attachment using a stream. |
SetTaskField | Sets the task field value by JSONPath. |
UpdateCheckListItem | Updates a subtask. |
UpdateTask | Updates a task. |
UpdateTaskList | Updates a task list. |
Event List
The following is the full list of the events fired by the class with short descriptions. Click on the links for further details.
AttachmentList | Fired when an attachment is retrieved from the server. |
CheckListItemList | Fired when a subtask is retrieved from the server. |
Error | Fired when information is available about errors during data delivery. |
Log | Fired once for each log message. |
SSLServerAuthentication | Fired after the server presents its certificate to the client. |
SSLStatus | Fired when secure connection progress messages are available. |
TaskList | Fired when a task is retrieved from the server. |
TaskListList | Fired when a task list is retrieved from the server. |
Transfer | Fired while a document transfers (delivers document). |
Config Settings
The following is a list of config settings for the class with short descriptions. Click on the links for further details.
AttachmentFragmentSize | Size of fragments when uploading large attachments. |
AttachmentSimpleUploadLimit | The threshold to use simple uploads. |
ListTaskListsMarker | The page marker for listing task lists. |
TaskListsPageSize | Page size limit for fetching tasks lists. |
TasksPageSize | Page size for fetching tasks. |
XChildCount | The number of child elements of the current element. |
XChildName[i] | The name of the child element. |
XChildXText[i] | The inner text of the child element. |
XElement | The name of the current element. |
XParent | The parent of the current element. |
XPath | Provides a way to point to a specific element in the returned XML or JSON response. |
XSubTree | A snapshot of the current element in the document. |
XText | The text of the current element. |
OAuthAccessTokenExpiration | The lifetime of the access token. |
OAuthAuthorizationTokenType | The type of access token returned. |
OAuthAutomaticRefresh | Whether or not to refresh an expired access token automatically. |
OAuthBrowserResponseTimeout | Specifies the amount of time to wait for a response from the browser. |
OAuthIncludeEmptyRedirectURI | Whether an empty redirect_uri parameter is included in requests. |
OAuthJWTPayload | The payload of the JWT access token if present. |
OAuthJWTXChildCount | The number of child elements of the current element. |
OauthJWTXChildName[i] | The name of the child element. |
OAuthJWTXChildXText[i] | The inner text of the child element. |
OAuthJWTXElement | The name of the current element. |
OauthJWTXParent | The parent of the current element. |
OAuthJWTXPath | Provides a way to point to a specific element in the returned payload of a JWT based access token. |
OAuthJWTXSubTree | A snapshot of the current element in the document. |
OAuthJWTXText | The text of the current element. |
OAuthParamCount | Specifies the number of additional parameters variables to include in the request. |
OAuthParamName[i] | Specifies the parameter name at the specified index. |
OAuthParamValue[i] | Specifies the parameter value at the specified index. |
OAuthPasswordGrantUsername | Used in the Resource Owner Password grant type. |
OAuthPKCEChallengeEncoding | The PKCE code challenge method to use. |
OAuthPKCEVerifier | The PKCE verifier used to generate the challenge. |
OAuthResetData | Determines if the Reset method applies to the OAuth settings. |
OAuthReUseWebServer | Determines if the same server instance is used between requests. |
OAuthTransferredRequest | The full OAuth request last sent by the client. |
OAuthUsePKCE | Specifies if PKCE should be used. |
OAuthWebServerActive | Specifies and controls whether the embedded web server is active. |
OAuthWebServerCertStore | The certificate with private key to use when SSL is enabled. |
OAuthWebServerCertStorePassword | The certificate with private key to use when SSL is enabled. |
OAuthWebServerCertStoreType | The certificate with private key to use when SSL is enabled. |
OAuthWebServerCertSubject | The certificate with private key to use when SSL is enabled. |
OAuthWebServerFailedResponse | The custom response that will be displayed to the user if authentication failed. |
OAuthWebServerHost | The hostname used by the embedded web server displayed in the ReturnURL. |
OAuthWebServerPort | The local port on which the embedded web server listens. |
OAuthWebServerResponse | The custom response that will be displayed to the user. |
OAuthWebServerSSLEnabled | Whether the web server requires SSL connections. |
AcceptEncoding | Used to tell the server which types of content encodings the client supports. |
AllowHTTPCompression | This property enables HTTP compression for receiving data. |
AllowHTTPFallback | Whether HTTP/2 connections are permitted to fallback to HTTP/1.1. |
Append | Whether to append data to LocalFile. |
Authorization | The Authorization string to be sent to the server. |
BytesTransferred | Contains the number of bytes transferred in the response data. |
ChunkSize | Specifies the chunk size in bytes when using chunked encoding. |
CompressHTTPRequest | Set to true to compress the body of a PUT or POST request. |
EncodeURL | If set to True the URL will be encoded by the class. |
FollowRedirects | Determines what happens when the server issues a redirect. |
GetOn302Redirect | If set to True the class will perform a GET on the new location. |
HTTP2HeadersWithoutIndexing | HTTP2 headers that should not update the dynamic header table with incremental indexing. |
HTTPVersion | The version of HTTP used by the class. |
IfModifiedSince | A date determining the maximum age of the desired document. |
KeepAlive | Determines whether the HTTP connection is closed after completion of the request. |
KerberosSPN | The Service Principal Name for the Kerberos Domain Controller. |
LogLevel | The level of detail that is logged. |
MaxRedirectAttempts | Limits the number of redirects that are followed in a request. |
NegotiatedHTTPVersion | The negotiated HTTP version. |
OtherHeaders | Other headers as determined by the user (optional). |
ProxyAuthorization | The authorization string to be sent to the proxy server. |
ProxyAuthScheme | The authorization scheme to be used for the proxy. |
ProxyPassword | A password if authentication is to be used for the proxy. |
ProxyPort | Port for the proxy server (default 80). |
ProxyServer | Name or IP address of a proxy server (optional). |
ProxyUser | A user name if authentication is to be used for the proxy. |
SentHeaders | The full set of headers as sent by the client. |
StatusCode | The status code of the last response from the server. |
StatusLine | The first line of the last response from the server. |
TransferredData | The contents of the last response from the server. |
TransferredDataLimit | The maximum number of incoming bytes to be stored by the class. |
TransferredHeaders | The full set of headers as received from the server. |
TransferredRequest | The full request as sent by the client. |
UseChunkedEncoding | Enables or Disables HTTP chunked encoding for transfers. |
UseIDNs | Whether to encode hostnames to internationalized domain names. |
UsePlatformHTTPClient | Whether or not to use the platform HTTP client. |
UseProxyAutoConfigURL | Whether to use a Proxy auto-config file when attempting a connection. |
UserAgent | Information about the user agent (browser). |
ConnectionTimeout | Sets a separate timeout value for establishing a connection. |
FirewallAutoDetect | Tells the class whether or not to automatically detect and use firewall system settings, if available. |
FirewallHost | Name or IP address of firewall (optional). |
FirewallPassword | Password to be used if authentication is to be used when connecting through the firewall. |
FirewallPort | The TCP port for the FirewallHost;. |
FirewallType | Determines the type of firewall to connect through. |
FirewallUser | A user name if authentication is to be used connecting through a firewall. |
KeepAliveInterval | The retry interval, in milliseconds, to be used when a TCP keep-alive packet is sent and no response is received. |
KeepAliveRetryCount | The number of keep-alive packets to be sent before the remotehost is considered disconnected. |
KeepAliveTime | The inactivity time in milliseconds before a TCP keep-alive packet is sent. |
Linger | When set to True, connections are terminated gracefully. |
LingerTime | Time in seconds to have the connection linger. |
LocalHost | The name of the local host through which connections are initiated or accepted. |
LocalPort | The port in the local host where the class binds. |
MaxLineLength | The maximum amount of data to accumulate when no EOL is found. |
MaxTransferRate | The transfer rate limit in bytes per second. |
ProxyExceptionsList | A semicolon separated list of hosts and IPs to bypass when using a proxy. |
TCPKeepAlive | Determines whether or not the keep alive socket option is enabled. |
TcpNoDelay | Whether or not to delay when sending packets. |
UseIPv6 | Whether to use IPv6. |
LogSSLPackets | Controls whether SSL packets are logged when using the internal security API. |
OpenSSLCADir | The path to a directory containing CA certificates. |
OpenSSLCAFile | Name of the file containing the list of CA's trusted by your application. |
OpenSSLCipherList | A string that controls the ciphers to be used by SSL. |
OpenSSLPrngSeedData | The data to seed the pseudo random number generator (PRNG). |
ReuseSSLSession | Determines if the SSL session is reused. |
SSLCACertFilePaths | The paths to CA certificate files on Unix/Linux. |
SSLCACerts | A newline separated list of CA certificates to be included when performing an SSL handshake. |
SSLCipherStrength | The minimum cipher strength used for bulk encryption. |
SSLClientCACerts | A newline separated list of CA certificates to use during SSL client certificate validation. |
SSLEnabledCipherSuites | The cipher suite to be used in an SSL negotiation. |
SSLEnabledProtocols | Used to enable/disable the supported security protocols. |
SSLEnableRenegotiation | Whether the renegotiation_info SSL extension is supported. |
SSLIncludeCertChain | Whether the entire certificate chain is included in the SSLServerAuthentication event. |
SSLKeyLogFile | The location of a file where per-session secrets are written for debugging purposes. |
SSLNegotiatedCipher | Returns the negotiated cipher suite. |
SSLNegotiatedCipherStrength | Returns the negotiated cipher suite strength. |
SSLNegotiatedCipherSuite | Returns the negotiated cipher suite. |
SSLNegotiatedKeyExchange | Returns the negotiated key exchange algorithm. |
SSLNegotiatedKeyExchangeStrength | Returns the negotiated key exchange algorithm strength. |
SSLNegotiatedVersion | Returns the negotiated protocol version. |
SSLSecurityFlags | Flags that control certificate verification. |
SSLServerCACerts | A newline separated list of CA certificates to use during SSL server certificate validation. |
TLS12SignatureAlgorithms | Defines the allowed TLS 1.2 signature algorithms when SSLProvider is set to Internal. |
TLS12SupportedGroups | The supported groups for ECC. |
TLS13KeyShareGroups | The groups for which to pregenerate key shares. |
TLS13SignatureAlgorithms | The allowed certificate signature algorithms. |
TLS13SupportedGroups | The supported groups for (EC)DHE key exchange. |
AbsoluteTimeout | Determines whether timeouts are inactivity timeouts or absolute timeouts. |
FirewallData | Used to send extra data to the firewall. |
InBufferSize | The size in bytes of the incoming queue of the socket. |
OutBufferSize | The size in bytes of the outgoing queue of the socket. |
BuildInfo | Information about the product's build. |
CodePage | The system code page used for Unicode to Multibyte translations. |
LicenseInfo | Information about the current license. |
MaskSensitiveData | Whether sensitive data is masked in log messages. |
ProcessIdleEvents | Whether the class uses its internal event loop to process events when the main thread is idle. |
SelectWaitMillis | The length of time in milliseconds the class will wait when DoEvents is called if there are no events to process. |
UseFIPSCompliantAPI | Tells the class whether or not to use FIPS certified APIs. |
UseInternalSecurityAPI | Whether or not to use the system security libraries or an internal implementation. |
Attachments Property (Office365Tasks Class)
Collection of attachments listed by the server.
Syntax
CloudCalendarsList<CloudCalendarsOTAttachment>* GetAttachments(); int SetAttachments(CloudCalendarsList<CloudCalendarsOTAttachment>* val);
int cloudcalendars_office365tasks_getattachmentscount(void* lpObj);
int cloudcalendars_office365tasks_setattachmentscount(void* lpObj, int iAttachmentsCount);
char* cloudcalendars_office365tasks_getattachmentcontenttype(void* lpObj, int attachmentindex);
int cloudcalendars_office365tasks_getattachmentdata(void* lpObj, int attachmentindex, char** lpAttachmentData, int* lenAttachmentData);
int cloudcalendars_office365tasks_setattachmentdata(void* lpObj, int attachmentindex, const char* lpAttachmentData, int lenAttachmentData);
char* cloudcalendars_office365tasks_getattachmentfilename(void* lpObj, int attachmentindex);
int cloudcalendars_office365tasks_setattachmentfilename(void* lpObj, int attachmentindex, const char* lpszAttachmentFileName);
char* cloudcalendars_office365tasks_getattachmentid(void* lpObj, int attachmentindex);
int cloudcalendars_office365tasks_setattachmentinputstream(void* lpObj, int attachmentindex, CloudCalendarsStream* sAttachmentInputStream);
char* cloudcalendars_office365tasks_getattachmentjson(void* lpObj, int attachmentindex);
int cloudcalendars_office365tasks_setattachmentjson(void* lpObj, int attachmentindex, const char* lpszAttachmentJSON);
char* cloudcalendars_office365tasks_getattachmentlastmodifieddate(void* lpObj, int attachmentindex);
int cloudcalendars_office365tasks_setattachmentlastmodifieddate(void* lpObj, int attachmentindex, const char* lpszAttachmentLastModifiedDate);
char* cloudcalendars_office365tasks_getattachmentname(void* lpObj, int attachmentindex);
int cloudcalendars_office365tasks_setattachmentname(void* lpObj, int attachmentindex, const char* lpszAttachmentName);
int cloudcalendars_office365tasks_getattachmentsize(void* lpObj, int attachmentindex);
int cloudcalendars_office365tasks_setattachmentsize(void* lpObj, int attachmentindex, int iAttachmentSize);
char* cloudcalendars_office365tasks_getattachmenttaskid(void* lpObj, int attachmentindex);
char* cloudcalendars_office365tasks_getattachmenttasklistid(void* lpObj, int attachmentindex);
int GetAttachmentsCount();
int SetAttachmentsCount(int iAttachmentsCount); QString GetAttachmentContentType(int iAttachmentIndex); QByteArray GetAttachmentData(int iAttachmentIndex);
int SetAttachmentData(int iAttachmentIndex, QByteArray qbaAttachmentData); QString GetAttachmentFileName(int iAttachmentIndex);
int SetAttachmentFileName(int iAttachmentIndex, QString qsAttachmentFileName); QString GetAttachmentId(int iAttachmentIndex); int SetAttachmentInputStream(int iAttachmentIndex, CloudCalendarsStream* sAttachmentInputStream); QString GetAttachmentJSON(int iAttachmentIndex);
int SetAttachmentJSON(int iAttachmentIndex, QString qsAttachmentJSON); QString GetAttachmentLastModifiedDate(int iAttachmentIndex);
int SetAttachmentLastModifiedDate(int iAttachmentIndex, QString qsAttachmentLastModifiedDate); QString GetAttachmentName(int iAttachmentIndex);
int SetAttachmentName(int iAttachmentIndex, QString qsAttachmentName); int GetAttachmentSize(int iAttachmentIndex);
int SetAttachmentSize(int iAttachmentIndex, int iAttachmentSize); QString GetAttachmentTaskId(int iAttachmentIndex); QString GetAttachmentTaskListId(int iAttachmentIndex);
Remarks
This collection contains a list of attachments returned by the server when ListAttachments is called.
This property is not available at design time.
Data Type
Authorization Property (Office365Tasks Class)
An OAuth Authorization String.
Syntax
ANSI (Cross Platform) char* GetAuthorization();
int SetAuthorization(const char* lpszAuthorization); Unicode (Windows) LPWSTR GetAuthorization();
INT SetAuthorization(LPCWSTR lpszAuthorization);
char* cloudcalendars_office365tasks_getauthorization(void* lpObj);
int cloudcalendars_office365tasks_setauthorization(void* lpObj, const char* lpszAuthorization);
QString GetAuthorization();
int SetAuthorization(QString qsAuthorization);
Default Value
""
Remarks
This property is used to specify an OAuth authorization string. Setting it is a requirement for using the component.
Example
Oauth oauth = new Oauth();
oauth.ClientId = "YourClientId";
oauth.ClientSecret = "YourClientSecret";
oauth.ServerAuthURL = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize";
oauth.ServerTokenURL = "https://login.microsoftonline.com/common/oauth2/v2.0/token";
oauth.AuthorizationScope = "user.read";
oauth.GrantType = OauthGrantTypes.ogtAuthorizationCode;
office365tasks.Authorization = oauth.GetAuthorization();
This property is not available at design time.
Data Type
String
CheckListItems Property (Office365Tasks Class)
The collection of subtasks listed by the server.
Syntax
CloudCalendarsList<CloudCalendarsOTCheckListItem>* GetCheckListItems(); int SetCheckListItems(CloudCalendarsList<CloudCalendarsOTCheckListItem>* val);
int cloudcalendars_office365tasks_getchecklistitemscount(void* lpObj);
int cloudcalendars_office365tasks_setchecklistitemscount(void* lpObj, int iCheckListItemsCount);
char* cloudcalendars_office365tasks_getchecklistitemcheckeddatetime(void* lpObj, int checklistitemindex);
char* cloudcalendars_office365tasks_getchecklistitemcreateddatetime(void* lpObj, int checklistitemindex);
char* cloudcalendars_office365tasks_getchecklistitemdisplayname(void* lpObj, int checklistitemindex);
int cloudcalendars_office365tasks_setchecklistitemdisplayname(void* lpObj, int checklistitemindex, const char* lpszCheckListItemDisplayName);
char* cloudcalendars_office365tasks_getchecklistitemid(void* lpObj, int checklistitemindex);
int cloudcalendars_office365tasks_getchecklistitemischecked(void* lpObj, int checklistitemindex);
int cloudcalendars_office365tasks_setchecklistitemischecked(void* lpObj, int checklistitemindex, int bCheckListItemIsChecked);
char* cloudcalendars_office365tasks_getchecklistitemtaskid(void* lpObj, int checklistitemindex);
char* cloudcalendars_office365tasks_getchecklistitemtasklistid(void* lpObj, int checklistitemindex);
int GetCheckListItemsCount();
int SetCheckListItemsCount(int iCheckListItemsCount); QString GetCheckListItemCheckedDateTime(int iCheckListItemIndex); QString GetCheckListItemCreatedDateTime(int iCheckListItemIndex); QString GetCheckListItemDisplayName(int iCheckListItemIndex);
int SetCheckListItemDisplayName(int iCheckListItemIndex, QString qsCheckListItemDisplayName); QString GetCheckListItemId(int iCheckListItemIndex); bool GetCheckListItemIsChecked(int iCheckListItemIndex);
int SetCheckListItemIsChecked(int iCheckListItemIndex, bool bCheckListItemIsChecked); QString GetCheckListItemTaskId(int iCheckListItemIndex); QString GetCheckListItemTaskListId(int iCheckListItemIndex);
Remarks
This collection contains a list of subtasks returned by the server. It is populated when ListCheckListItems or GetCheckListItem is called. A GetCheckListItem call adds the retrieved subtask to the beginning of the list. If the subtask already exists in the CheckListItems collection, it will be removed and then added to the beginning, preventing duplication.
This property is not available at design time.
Data Type
Firewall Property (Office365Tasks Class)
A set of properties related to firewall access.
Syntax
CloudCalendarsFirewall* GetFirewall(); int SetFirewall(CloudCalendarsFirewall* val);
int cloudcalendars_office365tasks_getfirewallautodetect(void* lpObj);
int cloudcalendars_office365tasks_setfirewallautodetect(void* lpObj, int bFirewallAutoDetect);
int cloudcalendars_office365tasks_getfirewalltype(void* lpObj);
int cloudcalendars_office365tasks_setfirewalltype(void* lpObj, int iFirewallType);
char* cloudcalendars_office365tasks_getfirewallhost(void* lpObj);
int cloudcalendars_office365tasks_setfirewallhost(void* lpObj, const char* lpszFirewallHost);
char* cloudcalendars_office365tasks_getfirewallpassword(void* lpObj);
int cloudcalendars_office365tasks_setfirewallpassword(void* lpObj, const char* lpszFirewallPassword);
int cloudcalendars_office365tasks_getfirewallport(void* lpObj);
int cloudcalendars_office365tasks_setfirewallport(void* lpObj, int iFirewallPort);
char* cloudcalendars_office365tasks_getfirewalluser(void* lpObj);
int cloudcalendars_office365tasks_setfirewalluser(void* lpObj, const char* lpszFirewallUser);
bool GetFirewallAutoDetect();
int SetFirewallAutoDetect(bool bFirewallAutoDetect); int GetFirewallType();
int SetFirewallType(int iFirewallType); QString GetFirewallHost();
int SetFirewallHost(QString qsFirewallHost); QString GetFirewallPassword();
int SetFirewallPassword(QString qsFirewallPassword); int GetFirewallPort();
int SetFirewallPort(int iFirewallPort); QString GetFirewallUser();
int SetFirewallUser(QString qsFirewallUser);
Remarks
This is a Firewall-type property, which contains fields describing the firewall through which the class will attempt to connect.
Data Type
ListTasksMarker Property (Office365Tasks Class)
The page marker for listing tasks.
Syntax
ANSI (Cross Platform) char* GetListTasksMarker();
int SetListTasksMarker(const char* lpszListTasksMarker); Unicode (Windows) LPWSTR GetListTasksMarker();
INT SetListTasksMarker(LPCWSTR lpszListTasksMarker);
char* cloudcalendars_office365tasks_getlisttasksmarker(void* lpObj);
int cloudcalendars_office365tasks_setlisttasksmarker(void* lpObj, const char* lpszListTasksMarker);
QString GetListTasksMarker();
int SetListTasksMarker(QString qsListTasksMarker);
Default Value
""
Remarks
This property is populated if there are still unlisted tasks after ListTasks is called. It contains the nextLink that will be included as an OData parameter if ListTasks is called again. This will cause the next page of tasks to be listed and added to the end of the Tasks collection.
This property is not available at design time.
Data Type
String
OAuth Property (Office365Tasks Class)
This property holds the OAuth Settings.
Syntax
CloudCalendarsOAuthSettings* GetOAuth();
char* cloudcalendars_office365tasks_getoauthaccesstoken(void* lpObj);
int cloudcalendars_office365tasks_setoauthaccesstoken(void* lpObj, const char* lpszOAuthAccessToken);
char* cloudcalendars_office365tasks_getoauthauthorizationcode(void* lpObj);
int cloudcalendars_office365tasks_setoauthauthorizationcode(void* lpObj, const char* lpszOAuthAuthorizationCode);
char* cloudcalendars_office365tasks_getoauthauthorizationscope(void* lpObj);
int cloudcalendars_office365tasks_setoauthauthorizationscope(void* lpObj, const char* lpszOAuthAuthorizationScope);
char* cloudcalendars_office365tasks_getoauthclientid(void* lpObj);
int cloudcalendars_office365tasks_setoauthclientid(void* lpObj, const char* lpszOAuthClientId);
int cloudcalendars_office365tasks_getoauthclientprofile(void* lpObj);
int cloudcalendars_office365tasks_setoauthclientprofile(void* lpObj, int iOAuthClientProfile);
char* cloudcalendars_office365tasks_getoauthclientsecret(void* lpObj);
int cloudcalendars_office365tasks_setoauthclientsecret(void* lpObj, const char* lpszOAuthClientSecret);
int cloudcalendars_office365tasks_getoauthgranttype(void* lpObj);
int cloudcalendars_office365tasks_setoauthgranttype(void* lpObj, int iOAuthGrantType);
char* cloudcalendars_office365tasks_getoauthrefreshtoken(void* lpObj);
int cloudcalendars_office365tasks_setoauthrefreshtoken(void* lpObj, const char* lpszOAuthRefreshToken);
int cloudcalendars_office365tasks_getoauthrequestrefreshtoken(void* lpObj);
int cloudcalendars_office365tasks_setoauthrequestrefreshtoken(void* lpObj, int bOAuthRequestRefreshToken);
char* cloudcalendars_office365tasks_getoauthreturnurl(void* lpObj);
int cloudcalendars_office365tasks_setoauthreturnurl(void* lpObj, const char* lpszOAuthReturnURL);
char* cloudcalendars_office365tasks_getoauthserverauthurl(void* lpObj);
int cloudcalendars_office365tasks_setoauthserverauthurl(void* lpObj, const char* lpszOAuthServerAuthURL);
char* cloudcalendars_office365tasks_getoauthservertokenurl(void* lpObj);
int cloudcalendars_office365tasks_setoauthservertokenurl(void* lpObj, const char* lpszOAuthServerTokenURL);
char* cloudcalendars_office365tasks_getoauthwebauthurl(void* lpObj);
QString GetOAuthAccessToken();
int SetOAuthAccessToken(QString qsOAuthAccessToken); QString GetOAuthAuthorizationCode();
int SetOAuthAuthorizationCode(QString qsOAuthAuthorizationCode); QString GetOAuthAuthorizationScope();
int SetOAuthAuthorizationScope(QString qsOAuthAuthorizationScope); QString GetOAuthClientId();
int SetOAuthClientId(QString qsOAuthClientId); int GetOAuthClientProfile();
int SetOAuthClientProfile(int iOAuthClientProfile); QString GetOAuthClientSecret();
int SetOAuthClientSecret(QString qsOAuthClientSecret); int GetOAuthGrantType();
int SetOAuthGrantType(int iOAuthGrantType); QString GetOAuthRefreshToken();
int SetOAuthRefreshToken(QString qsOAuthRefreshToken); bool GetOAuthRequestRefreshToken();
int SetOAuthRequestRefreshToken(bool bOAuthRequestRefreshToken); QString GetOAuthReturnURL();
int SetOAuthReturnURL(QString qsOAuthReturnURL); QString GetOAuthServerAuthURL();
int SetOAuthServerAuthURL(QString qsOAuthServerAuthURL); QString GetOAuthServerTokenURL();
int SetOAuthServerTokenURL(QString qsOAuthServerTokenURL); QString GetOAuthWebAuthURL();
Remarks
This property is used to define the necessary fields to authenticate with the service provider. See the introduction for more information.
This property is read-only and not available at design time.
Data Type
Proxy Property (Office365Tasks Class)
A set of properties related to proxy access.
Syntax
CloudCalendarsProxy* GetProxy(); int SetProxy(CloudCalendarsProxy* val);
int cloudcalendars_office365tasks_getproxyauthscheme(void* lpObj);
int cloudcalendars_office365tasks_setproxyauthscheme(void* lpObj, int iProxyAuthScheme);
int cloudcalendars_office365tasks_getproxyautodetect(void* lpObj);
int cloudcalendars_office365tasks_setproxyautodetect(void* lpObj, int bProxyAutoDetect);
char* cloudcalendars_office365tasks_getproxypassword(void* lpObj);
int cloudcalendars_office365tasks_setproxypassword(void* lpObj, const char* lpszProxyPassword);
int cloudcalendars_office365tasks_getproxyport(void* lpObj);
int cloudcalendars_office365tasks_setproxyport(void* lpObj, int iProxyPort);
char* cloudcalendars_office365tasks_getproxyserver(void* lpObj);
int cloudcalendars_office365tasks_setproxyserver(void* lpObj, const char* lpszProxyServer);
int cloudcalendars_office365tasks_getproxyssl(void* lpObj);
int cloudcalendars_office365tasks_setproxyssl(void* lpObj, int iProxySSL);
char* cloudcalendars_office365tasks_getproxyuser(void* lpObj);
int cloudcalendars_office365tasks_setproxyuser(void* lpObj, const char* lpszProxyUser);
int GetProxyAuthScheme();
int SetProxyAuthScheme(int iProxyAuthScheme); bool GetProxyAutoDetect();
int SetProxyAutoDetect(bool bProxyAutoDetect); QString GetProxyPassword();
int SetProxyPassword(QString qsProxyPassword); int GetProxyPort();
int SetProxyPort(int iProxyPort); QString GetProxyServer();
int SetProxyServer(QString qsProxyServer); int GetProxySSL();
int SetProxySSL(int iProxySSL); QString GetProxyUser();
int SetProxyUser(QString qsProxyUser);
Remarks
This property contains fields describing the proxy through which the class will attempt to connect.
Data Type
SSLAcceptServerCert Property (Office365Tasks Class)
Instructs the class to unconditionally accept the server certificate that matches the supplied certificate.
Syntax
CloudCalendarsCertificate* GetSSLAcceptServerCert(); int SetSSLAcceptServerCert(CloudCalendarsCertificate* val);
char* cloudcalendars_office365tasks_getsslacceptservercerteffectivedate(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertexpirationdate(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertextendedkeyusage(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertfingerprint(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertfingerprintsha1(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertfingerprintsha256(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertissuer(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertprivatekey(void* lpObj);
int cloudcalendars_office365tasks_getsslacceptservercertprivatekeyavailable(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertprivatekeycontainer(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertpublickey(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertpublickeyalgorithm(void* lpObj);
int cloudcalendars_office365tasks_getsslacceptservercertpublickeylength(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertserialnumber(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertsignaturealgorithm(void* lpObj);
int cloudcalendars_office365tasks_getsslacceptservercertstore(void* lpObj, char** lpSSLAcceptServerCertStore, int* lenSSLAcceptServerCertStore);
int cloudcalendars_office365tasks_setsslacceptservercertstore(void* lpObj, const char* lpSSLAcceptServerCertStore, int lenSSLAcceptServerCertStore);
char* cloudcalendars_office365tasks_getsslacceptservercertstorepassword(void* lpObj);
int cloudcalendars_office365tasks_setsslacceptservercertstorepassword(void* lpObj, const char* lpszSSLAcceptServerCertStorePassword);
int cloudcalendars_office365tasks_getsslacceptservercertstoretype(void* lpObj);
int cloudcalendars_office365tasks_setsslacceptservercertstoretype(void* lpObj, int iSSLAcceptServerCertStoreType);
char* cloudcalendars_office365tasks_getsslacceptservercertsubjectaltnames(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertthumbprintmd5(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertthumbprintsha1(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertthumbprintsha256(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertusage(void* lpObj);
int cloudcalendars_office365tasks_getsslacceptservercertusageflags(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertversion(void* lpObj);
char* cloudcalendars_office365tasks_getsslacceptservercertsubject(void* lpObj);
int cloudcalendars_office365tasks_setsslacceptservercertsubject(void* lpObj, const char* lpszSSLAcceptServerCertSubject);
int cloudcalendars_office365tasks_getsslacceptservercertencoded(void* lpObj, char** lpSSLAcceptServerCertEncoded, int* lenSSLAcceptServerCertEncoded);
int cloudcalendars_office365tasks_setsslacceptservercertencoded(void* lpObj, const char* lpSSLAcceptServerCertEncoded, int lenSSLAcceptServerCertEncoded);
QString GetSSLAcceptServerCertEffectiveDate(); QString GetSSLAcceptServerCertExpirationDate(); QString GetSSLAcceptServerCertExtendedKeyUsage(); QString GetSSLAcceptServerCertFingerprint(); QString GetSSLAcceptServerCertFingerprintSHA1(); QString GetSSLAcceptServerCertFingerprintSHA256(); QString GetSSLAcceptServerCertIssuer(); QString GetSSLAcceptServerCertPrivateKey(); bool GetSSLAcceptServerCertPrivateKeyAvailable(); QString GetSSLAcceptServerCertPrivateKeyContainer(); QString GetSSLAcceptServerCertPublicKey(); QString GetSSLAcceptServerCertPublicKeyAlgorithm(); int GetSSLAcceptServerCertPublicKeyLength(); QString GetSSLAcceptServerCertSerialNumber(); QString GetSSLAcceptServerCertSignatureAlgorithm(); QByteArray GetSSLAcceptServerCertStore();
int SetSSLAcceptServerCertStore(QByteArray qbaSSLAcceptServerCertStore); QString GetSSLAcceptServerCertStorePassword();
int SetSSLAcceptServerCertStorePassword(QString qsSSLAcceptServerCertStorePassword); int GetSSLAcceptServerCertStoreType();
int SetSSLAcceptServerCertStoreType(int iSSLAcceptServerCertStoreType); QString GetSSLAcceptServerCertSubjectAltNames(); QString GetSSLAcceptServerCertThumbprintMD5(); QString GetSSLAcceptServerCertThumbprintSHA1(); QString GetSSLAcceptServerCertThumbprintSHA256(); QString GetSSLAcceptServerCertUsage(); int GetSSLAcceptServerCertUsageFlags(); QString GetSSLAcceptServerCertVersion(); QString GetSSLAcceptServerCertSubject();
int SetSSLAcceptServerCertSubject(QString qsSSLAcceptServerCertSubject); QByteArray GetSSLAcceptServerCertEncoded();
int SetSSLAcceptServerCertEncoded(QByteArray qbaSSLAcceptServerCertEncoded);
Remarks
If it finds any issues with the certificate presented by the server, the class will normally terminate the connection with an error.
You may override this behavior by supplying a value for SSLAcceptServerCert. If the certificate supplied in SSLAcceptServerCert is the same as the certificate presented by the server, then the server certificate is accepted unconditionally, and the connection will continue normally.
Note: This functionality is provided only for cases in which you otherwise know that you are communicating with the right server. If used improperly, this property may create a security breach. Use it at your own risk.
Data Type
SSLCert Property (Office365Tasks Class)
The certificate to be used during Secure Sockets Layer (SSL) negotiation.
Syntax
CloudCalendarsCertificate* GetSSLCert(); int SetSSLCert(CloudCalendarsCertificate* val);
char* cloudcalendars_office365tasks_getsslcerteffectivedate(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertexpirationdate(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertextendedkeyusage(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertfingerprint(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertfingerprintsha1(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertfingerprintsha256(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertissuer(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertprivatekey(void* lpObj);
int cloudcalendars_office365tasks_getsslcertprivatekeyavailable(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertprivatekeycontainer(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertpublickey(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertpublickeyalgorithm(void* lpObj);
int cloudcalendars_office365tasks_getsslcertpublickeylength(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertserialnumber(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertsignaturealgorithm(void* lpObj);
int cloudcalendars_office365tasks_getsslcertstore(void* lpObj, char** lpSSLCertStore, int* lenSSLCertStore);
int cloudcalendars_office365tasks_setsslcertstore(void* lpObj, const char* lpSSLCertStore, int lenSSLCertStore);
char* cloudcalendars_office365tasks_getsslcertstorepassword(void* lpObj);
int cloudcalendars_office365tasks_setsslcertstorepassword(void* lpObj, const char* lpszSSLCertStorePassword);
int cloudcalendars_office365tasks_getsslcertstoretype(void* lpObj);
int cloudcalendars_office365tasks_setsslcertstoretype(void* lpObj, int iSSLCertStoreType);
char* cloudcalendars_office365tasks_getsslcertsubjectaltnames(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertthumbprintmd5(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertthumbprintsha1(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertthumbprintsha256(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertusage(void* lpObj);
int cloudcalendars_office365tasks_getsslcertusageflags(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertversion(void* lpObj);
char* cloudcalendars_office365tasks_getsslcertsubject(void* lpObj);
int cloudcalendars_office365tasks_setsslcertsubject(void* lpObj, const char* lpszSSLCertSubject);
int cloudcalendars_office365tasks_getsslcertencoded(void* lpObj, char** lpSSLCertEncoded, int* lenSSLCertEncoded);
int cloudcalendars_office365tasks_setsslcertencoded(void* lpObj, const char* lpSSLCertEncoded, int lenSSLCertEncoded);
QString GetSSLCertEffectiveDate(); QString GetSSLCertExpirationDate(); QString GetSSLCertExtendedKeyUsage(); QString GetSSLCertFingerprint(); QString GetSSLCertFingerprintSHA1(); QString GetSSLCertFingerprintSHA256(); QString GetSSLCertIssuer(); QString GetSSLCertPrivateKey(); bool GetSSLCertPrivateKeyAvailable(); QString GetSSLCertPrivateKeyContainer(); QString GetSSLCertPublicKey(); QString GetSSLCertPublicKeyAlgorithm(); int GetSSLCertPublicKeyLength(); QString GetSSLCertSerialNumber(); QString GetSSLCertSignatureAlgorithm(); QByteArray GetSSLCertStore();
int SetSSLCertStore(QByteArray qbaSSLCertStore); QString GetSSLCertStorePassword();
int SetSSLCertStorePassword(QString qsSSLCertStorePassword); int GetSSLCertStoreType();
int SetSSLCertStoreType(int iSSLCertStoreType); QString GetSSLCertSubjectAltNames(); QString GetSSLCertThumbprintMD5(); QString GetSSLCertThumbprintSHA1(); QString GetSSLCertThumbprintSHA256(); QString GetSSLCertUsage(); int GetSSLCertUsageFlags(); QString GetSSLCertVersion(); QString GetSSLCertSubject();
int SetSSLCertSubject(QString qsSSLCertSubject); QByteArray GetSSLCertEncoded();
int SetSSLCertEncoded(QByteArray qbaSSLCertEncoded);
Remarks
This property includes the digital certificate that the class will use during SSL negotiation. Set this property to a valid certificate before starting SSL negotiation. To set a certificate, you may set the Encoded field to the encoded certificate. To select a certificate, use the store and subject fields.
Data Type
SSLProvider Property (Office365Tasks Class)
The Secure Sockets Layer/Transport Layer Security (SSL/TLS) implementation to use.
Syntax
ANSI (Cross Platform) int GetSSLProvider();
int SetSSLProvider(int iSSLProvider); Unicode (Windows) INT GetSSLProvider();
INT SetSSLProvider(INT iSSLProvider);
Possible Values
SSLP_AUTOMATIC(0),
SSLP_PLATFORM(1),
SSLP_INTERNAL(2)
int cloudcalendars_office365tasks_getsslprovider(void* lpObj);
int cloudcalendars_office365tasks_setsslprovider(void* lpObj, int iSSLProvider);
int GetSSLProvider();
int SetSSLProvider(int iSSLProvider);
Default Value
0
Remarks
This property specifies the SSL/TLS implementation to use. In most cases the default value of 0 (Automatic) is recommended and should not be changed. When set to 0 (Automatic), the class will select whether to use the platform implementation or the internal implementation depending on the operating system as well as the TLS version being used.
Possible values are as follows:
0 (sslpAutomatic - default) | Automatically selects the appropriate implementation. |
1 (sslpPlatform) | Uses the platform/system implementation. |
2 (sslpInternal) | Uses the internal implementation. |
In most cases using the default value (Automatic) is recommended. The class will select a provider depending on the current platform.
When Automatic is selected, on Windows, the class will use the platform implementation. On Linux/macOS, the class will use the internal implementation. When TLS 1.3 is enabled via SSLEnabledProtocols, the internal implementation is used on all platforms.
Data Type
Integer
SSLServerCert Property (Office365Tasks Class)
The server certificate for the last established connection.
Syntax
CloudCalendarsCertificate* GetSSLServerCert();
char* cloudcalendars_office365tasks_getsslservercerteffectivedate(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertexpirationdate(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertextendedkeyusage(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertfingerprint(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertfingerprintsha1(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertfingerprintsha256(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertissuer(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertprivatekey(void* lpObj);
int cloudcalendars_office365tasks_getsslservercertprivatekeyavailable(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertprivatekeycontainer(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertpublickey(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertpublickeyalgorithm(void* lpObj);
int cloudcalendars_office365tasks_getsslservercertpublickeylength(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertserialnumber(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertsignaturealgorithm(void* lpObj);
int cloudcalendars_office365tasks_getsslservercertstore(void* lpObj, char** lpSSLServerCertStore, int* lenSSLServerCertStore);
char* cloudcalendars_office365tasks_getsslservercertstorepassword(void* lpObj);
int cloudcalendars_office365tasks_getsslservercertstoretype(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertsubjectaltnames(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertthumbprintmd5(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertthumbprintsha1(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertthumbprintsha256(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertusage(void* lpObj);
int cloudcalendars_office365tasks_getsslservercertusageflags(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertversion(void* lpObj);
char* cloudcalendars_office365tasks_getsslservercertsubject(void* lpObj);
int cloudcalendars_office365tasks_getsslservercertencoded(void* lpObj, char** lpSSLServerCertEncoded, int* lenSSLServerCertEncoded);
QString GetSSLServerCertEffectiveDate(); QString GetSSLServerCertExpirationDate(); QString GetSSLServerCertExtendedKeyUsage(); QString GetSSLServerCertFingerprint(); QString GetSSLServerCertFingerprintSHA1(); QString GetSSLServerCertFingerprintSHA256(); QString GetSSLServerCertIssuer(); QString GetSSLServerCertPrivateKey(); bool GetSSLServerCertPrivateKeyAvailable(); QString GetSSLServerCertPrivateKeyContainer(); QString GetSSLServerCertPublicKey(); QString GetSSLServerCertPublicKeyAlgorithm(); int GetSSLServerCertPublicKeyLength(); QString GetSSLServerCertSerialNumber(); QString GetSSLServerCertSignatureAlgorithm(); QByteArray GetSSLServerCertStore(); QString GetSSLServerCertStorePassword(); int GetSSLServerCertStoreType(); QString GetSSLServerCertSubjectAltNames(); QString GetSSLServerCertThumbprintMD5(); QString GetSSLServerCertThumbprintSHA1(); QString GetSSLServerCertThumbprintSHA256(); QString GetSSLServerCertUsage(); int GetSSLServerCertUsageFlags(); QString GetSSLServerCertVersion(); QString GetSSLServerCertSubject(); QByteArray GetSSLServerCertEncoded();
Remarks
This property contains the server certificate for the last established connection.
SSLServerCert is reset every time a new connection is attempted.
This property is read-only.
Data Type
TaskLists Property (Office365Tasks Class)
The collection of task lists listed by the server.
Syntax
CloudCalendarsList<CloudCalendarsOTTaskList>* GetTaskLists(); int SetTaskLists(CloudCalendarsList<CloudCalendarsOTTaskList>* val);
int cloudcalendars_office365tasks_gettasklistscount(void* lpObj);
int cloudcalendars_office365tasks_settasklistscount(void* lpObj, int iTaskListsCount);
char* cloudcalendars_office365tasks_gettasklistdisplayname(void* lpObj, int tasklistindex);
int cloudcalendars_office365tasks_settasklistdisplayname(void* lpObj, int tasklistindex, const char* lpszTaskListDisplayName);
char* cloudcalendars_office365tasks_gettasklistid(void* lpObj, int tasklistindex);
int cloudcalendars_office365tasks_gettasklistisdefault(void* lpObj, int tasklistindex);
int cloudcalendars_office365tasks_gettasklistisowner(void* lpObj, int tasklistindex);
int cloudcalendars_office365tasks_gettasklistisshared(void* lpObj, int tasklistindex);
int GetTaskListsCount();
int SetTaskListsCount(int iTaskListsCount); QString GetTaskListDisplayName(int iTaskListIndex);
int SetTaskListDisplayName(int iTaskListIndex, QString qsTaskListDisplayName); QString GetTaskListId(int iTaskListIndex); bool GetTaskListIsDefault(int iTaskListIndex); bool GetTaskListIsOwner(int iTaskListIndex); bool GetTaskListIsShared(int iTaskListIndex);
Remarks
This collection contains a list of task lists returned by the server. It is populated when ListTaskLists is called.
This property is not available at design time.
Data Type
Tasks Property (Office365Tasks Class)
The collection of tasks listed by the server.
Syntax
CloudCalendarsList<CloudCalendarsOTTaskItem>* GetTasks(); int SetTasks(CloudCalendarsList<CloudCalendarsOTTaskItem>* val);
int cloudcalendars_office365tasks_gettaskscount(void* lpObj);
int cloudcalendars_office365tasks_settaskscount(void* lpObj, int iTasksCount);
char* cloudcalendars_office365tasks_gettaskbody(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskbody(void* lpObj, int taskindex, const char* lpszTaskBody);
char* cloudcalendars_office365tasks_gettaskbodylastmodifieddatetime(void* lpObj, int taskindex);
char* cloudcalendars_office365tasks_gettaskcategories(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskcategories(void* lpObj, int taskindex, const char* lpszTaskCategories);
char* cloudcalendars_office365tasks_gettaskcompleteddatetime(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskcompleteddatetime(void* lpObj, int taskindex, const char* lpszTaskCompletedDateTime);
char* cloudcalendars_office365tasks_gettaskcompletedtimezone(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskcompletedtimezone(void* lpObj, int taskindex, const char* lpszTaskCompletedTimeZone);
char* cloudcalendars_office365tasks_gettaskcreateddatetime(void* lpObj, int taskindex);
char* cloudcalendars_office365tasks_gettaskduedatetime(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskduedatetime(void* lpObj, int taskindex, const char* lpszTaskDueDateTime);
char* cloudcalendars_office365tasks_gettaskduetimezone(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskduetimezone(void* lpObj, int taskindex, const char* lpszTaskDueTimeZone);
int cloudcalendars_office365tasks_gettaskhasattachments(void* lpObj, int taskindex);
char* cloudcalendars_office365tasks_gettaskid(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_gettaskimportance(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskimportance(void* lpObj, int taskindex, int iTaskImportance);
int cloudcalendars_office365tasks_gettaskisreminderon(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskisreminderon(void* lpObj, int taskindex, int bTaskIsReminderOn);
char* cloudcalendars_office365tasks_gettaskjson(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskjson(void* lpObj, int taskindex, const char* lpszTaskJSON);
char* cloudcalendars_office365tasks_gettasklastmodifieddatetime(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_gettaskrecurdayofmonth(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurdayofmonth(void* lpObj, int taskindex, int iTaskRecurDayOfMonth);
char* cloudcalendars_office365tasks_gettaskrecurdaysofweek(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurdaysofweek(void* lpObj, int taskindex, const char* lpszTaskRecurDaysOfWeek);
char* cloudcalendars_office365tasks_gettaskrecurenddate(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurenddate(void* lpObj, int taskindex, const char* lpszTaskRecurEndDate);
char* cloudcalendars_office365tasks_gettaskrecurfirstdayofweek(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurfirstdayofweek(void* lpObj, int taskindex, const char* lpszTaskRecurFirstDayOfWeek);
char* cloudcalendars_office365tasks_gettaskrecurindex(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurindex(void* lpObj, int taskindex, const char* lpszTaskRecurIndex);
int cloudcalendars_office365tasks_gettaskrecurinterval(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurinterval(void* lpObj, int taskindex, int iTaskRecurInterval);
int cloudcalendars_office365tasks_gettaskrecurmonth(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurmonth(void* lpObj, int taskindex, int iTaskRecurMonth);
int cloudcalendars_office365tasks_gettaskrecurnumberofoccurrences(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurnumberofoccurrences(void* lpObj, int taskindex, int iTaskRecurNumberOfOccurrences);
int cloudcalendars_office365tasks_gettaskrecurrangetype(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurrangetype(void* lpObj, int taskindex, int iTaskRecurRangeType);
char* cloudcalendars_office365tasks_gettaskrecurstartdate(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurstartdate(void* lpObj, int taskindex, const char* lpszTaskRecurStartDate);
char* cloudcalendars_office365tasks_gettaskrecurtimezone(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurtimezone(void* lpObj, int taskindex, const char* lpszTaskRecurTimeZone);
int cloudcalendars_office365tasks_gettaskrecurtype(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskrecurtype(void* lpObj, int taskindex, int iTaskRecurType);
char* cloudcalendars_office365tasks_gettaskreminderdatetime(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskreminderdatetime(void* lpObj, int taskindex, const char* lpszTaskReminderDateTime);
char* cloudcalendars_office365tasks_gettaskremindertimezone(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskremindertimezone(void* lpObj, int taskindex, const char* lpszTaskReminderTimeZone);
char* cloudcalendars_office365tasks_gettaskstartdatetime(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskstartdatetime(void* lpObj, int taskindex, const char* lpszTaskStartDateTime);
char* cloudcalendars_office365tasks_gettaskstarttimezone(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskstarttimezone(void* lpObj, int taskindex, const char* lpszTaskStartTimeZone);
int cloudcalendars_office365tasks_gettaskstatus(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settaskstatus(void* lpObj, int taskindex, int iTaskStatus);
char* cloudcalendars_office365tasks_gettasktasklistid(void* lpObj, int taskindex);
char* cloudcalendars_office365tasks_gettasktitle(void* lpObj, int taskindex);
int cloudcalendars_office365tasks_settasktitle(void* lpObj, int taskindex, const char* lpszTaskTitle);
int GetTasksCount();
int SetTasksCount(int iTasksCount); QString GetTaskBody(int iTaskIndex);
int SetTaskBody(int iTaskIndex, QString qsTaskBody); QString GetTaskBodyLastModifiedDateTime(int iTaskIndex); QString GetTaskCategories(int iTaskIndex);
int SetTaskCategories(int iTaskIndex, QString qsTaskCategories); QString GetTaskCompletedDateTime(int iTaskIndex);
int SetTaskCompletedDateTime(int iTaskIndex, QString qsTaskCompletedDateTime); QString GetTaskCompletedTimeZone(int iTaskIndex);
int SetTaskCompletedTimeZone(int iTaskIndex, QString qsTaskCompletedTimeZone); QString GetTaskCreatedDateTime(int iTaskIndex); QString GetTaskDueDateTime(int iTaskIndex);
int SetTaskDueDateTime(int iTaskIndex, QString qsTaskDueDateTime); QString GetTaskDueTimeZone(int iTaskIndex);
int SetTaskDueTimeZone(int iTaskIndex, QString qsTaskDueTimeZone); bool GetTaskHasAttachments(int iTaskIndex); QString GetTaskId(int iTaskIndex); int GetTaskImportance(int iTaskIndex);
int SetTaskImportance(int iTaskIndex, int iTaskImportance); bool GetTaskIsReminderOn(int iTaskIndex);
int SetTaskIsReminderOn(int iTaskIndex, bool bTaskIsReminderOn); QString GetTaskJSON(int iTaskIndex);
int SetTaskJSON(int iTaskIndex, QString qsTaskJSON); QString GetTaskLastModifiedDateTime(int iTaskIndex); int GetTaskRecurDayOfMonth(int iTaskIndex);
int SetTaskRecurDayOfMonth(int iTaskIndex, int iTaskRecurDayOfMonth); QString GetTaskRecurDaysOfWeek(int iTaskIndex);
int SetTaskRecurDaysOfWeek(int iTaskIndex, QString qsTaskRecurDaysOfWeek); QString GetTaskRecurEndDate(int iTaskIndex);
int SetTaskRecurEndDate(int iTaskIndex, QString qsTaskRecurEndDate); QString GetTaskRecurFirstDayOfWeek(int iTaskIndex);
int SetTaskRecurFirstDayOfWeek(int iTaskIndex, QString qsTaskRecurFirstDayOfWeek); QString GetTaskRecurIndex(int iTaskIndex);
int SetTaskRecurIndex(int iTaskIndex, QString qsTaskRecurIndex); int GetTaskRecurInterval(int iTaskIndex);
int SetTaskRecurInterval(int iTaskIndex, int iTaskRecurInterval); int GetTaskRecurMonth(int iTaskIndex);
int SetTaskRecurMonth(int iTaskIndex, int iTaskRecurMonth); int GetTaskRecurNumberOfOccurrences(int iTaskIndex);
int SetTaskRecurNumberOfOccurrences(int iTaskIndex, int iTaskRecurNumberOfOccurrences); int GetTaskRecurRangeType(int iTaskIndex);
int SetTaskRecurRangeType(int iTaskIndex, int iTaskRecurRangeType); QString GetTaskRecurStartDate(int iTaskIndex);
int SetTaskRecurStartDate(int iTaskIndex, QString qsTaskRecurStartDate); QString GetTaskRecurTimeZone(int iTaskIndex);
int SetTaskRecurTimeZone(int iTaskIndex, QString qsTaskRecurTimeZone); int GetTaskRecurType(int iTaskIndex);
int SetTaskRecurType(int iTaskIndex, int iTaskRecurType); QString GetTaskReminderDateTime(int iTaskIndex);
int SetTaskReminderDateTime(int iTaskIndex, QString qsTaskReminderDateTime); QString GetTaskReminderTimeZone(int iTaskIndex);
int SetTaskReminderTimeZone(int iTaskIndex, QString qsTaskReminderTimeZone); QString GetTaskStartDateTime(int iTaskIndex);
int SetTaskStartDateTime(int iTaskIndex, QString qsTaskStartDateTime); QString GetTaskStartTimeZone(int iTaskIndex);
int SetTaskStartTimeZone(int iTaskIndex, QString qsTaskStartTimeZone); int GetTaskStatus(int iTaskIndex);
int SetTaskStatus(int iTaskIndex, int iTaskStatus); QString GetTaskTaskListId(int iTaskIndex); QString GetTaskTitle(int iTaskIndex);
int SetTaskTitle(int iTaskIndex, QString qsTaskTitle);
Remarks
This collection contains a list of tasks returned by the server. It is populated when ListTasks or GetTask is called. A GetTask call adds the retrieved task to the beginning of the list. If the task already exists in the Tasks collection, it will be removed and then added to the beginning, preventing duplication.
This property is not available at design time.
Data Type
AddAttachment Method (Office365Tasks Class)
Adds a file attachment to an existing task.
Syntax
ANSI (Cross Platform) int AddAttachment(const char* lpszTaskListId, const char* lpszTaskId, const char* lpszName, const char* lpszLocalFile); Unicode (Windows) INT AddAttachment(LPCWSTR lpszTaskListId, LPCWSTR lpszTaskId, LPCWSTR lpszName, LPCWSTR lpszLocalFile);
int cloudcalendars_office365tasks_addattachment(void* lpObj, const char* lpszTaskListId, const char* lpszTaskId, const char* lpszName, const char* lpszLocalFile);
int AddAttachment(const QString& qsTaskListId, const QString& qsTaskId, const QString& qsName, const QString& qsLocalFile);
Remarks
This method adds a file attachment to an existing task, specified by the TaskId parameter. To add a more complex attachment, set the Name and LocalFile parameters to empty strings and the class will use the first attachment in the Attachments properties. As a note, this will not clear the Attachments properties. If the file is larger than the value set in the AttachmentSimpleUploadLimit configuration, then the class will use an upload session to upload the attachment in fragments. The size of the fragments are specified in the AttachmentFragmentSize configuration. To add an attachment from stream use the SetAttachmentInStream method.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
Authorize Method (Office365Tasks Class)
Get the authorization string required to access the protected resource.
Syntax
ANSI (Cross Platform) int Authorize(); Unicode (Windows) INT Authorize();
int cloudcalendars_office365tasks_authorize(void* lpObj);
int Authorize();
Remarks
This method is used to get an access token that is required to access the protected resource. The method will act differently based on what is set in the ClientProfile field and the GrantType field. This method is not to be used in conjunction with the Authorization property. It should instead be used when setting the OAuth property.
For more information, see the introduction section.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
Config Method (Office365Tasks Class)
Sets or retrieves a configuration setting.
Syntax
ANSI (Cross Platform) char* Config(const char* lpszConfigurationString); Unicode (Windows) LPWSTR Config(LPCWSTR lpszConfigurationString);
char* cloudcalendars_office365tasks_config(void* lpObj, const char* lpszConfigurationString);
QString Config(const QString& qsConfigurationString);
Remarks
Config is a generic method available in every class. It is used to set and retrieve configuration settings for the class.
These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these internal properties is provided through the Config method.
To set a configuration setting named PROPERTY, you must call Config("PROPERTY=VALUE"), where VALUE is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).
To read (query) the value of a configuration setting, you must call Config("PROPERTY"). The value will be returned as a string.
Error Handling (C++)
This method returns a String value; after it returns, call the GetLastErrorCode() method to obtain its result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message.
CreateCheckListItem Method (Office365Tasks Class)
Creates a subtask.
Syntax
ANSI (Cross Platform) int CreateCheckListItem(const char* lpszSubject, const char* lpszTaskListId, const char* lpszTaskId); Unicode (Windows) INT CreateCheckListItem(LPCWSTR lpszSubject, LPCWSTR lpszTaskListId, LPCWSTR lpszTaskId);
int cloudcalendars_office365tasks_createchecklistitem(void* lpObj, const char* lpszSubject, const char* lpszTaskListId, const char* lpszTaskId);
int CreateCheckListItem(const QString& qsSubject, const QString& qsTaskListId, const QString& qsTaskId);
Remarks
Creates a subtask from the specified taskListId and taskId with the specified name. The subject parameter defines the name of the subtask.
The name of the subtask can be updated after creation by calling the UpdateCheckListItem method.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
CreateTask Method (Office365Tasks Class)
Creates a task.
Syntax
ANSI (Cross Platform) int CreateTask(const char* lpszSubject, const char* lpszTaskListId); Unicode (Windows) INT CreateTask(LPCWSTR lpszSubject, LPCWSTR lpszTaskListId);
int cloudcalendars_office365tasks_createtask(void* lpObj, const char* lpszSubject, const char* lpszTaskListId);
int CreateTask(const QString& qsSubject, const QString& qsTaskListId);
Remarks
Creates a new task from the specified taskListId with the specified name. The subject parameter defines the name of the task.
The name of the task can be updated after creation by calling the UpdateTask method.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
CreateTaskList Method (Office365Tasks Class)
Creates a new task list.
Syntax
ANSI (Cross Platform) int CreateTaskList(const char* lpszName); Unicode (Windows) INT CreateTaskList(LPCWSTR lpszName);
int cloudcalendars_office365tasks_createtasklist(void* lpObj, const char* lpszName);
int CreateTaskList(const QString& qsName);
Remarks
Creates a new task list with the specified name. The name parameter defines the name of the task list.
The name of the task list can be updated after creation by calling the UpdateTaskList method.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
DeleteAttachment Method (Office365Tasks Class)
Deletes an attachment.
Syntax
ANSI (Cross Platform) int DeleteAttachment(const char* lpszTaskListId, const char* lpszTaskId, const char* lpszId); Unicode (Windows) INT DeleteAttachment(LPCWSTR lpszTaskListId, LPCWSTR lpszTaskId, LPCWSTR lpszId);
int cloudcalendars_office365tasks_deleteattachment(void* lpObj, const char* lpszTaskListId, const char* lpszTaskId, const char* lpszId);
int DeleteAttachment(const QString& qsTaskListId, const QString& qsTaskId, const QString& qsId);
Remarks
This method deletes an attachment. id takes the ID of the task the attachment is attached to. attachmentId takes the attachment ID of an existing attachment. This will not remove the attachment from the Attachments properties.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
DeleteCheckListItem Method (Office365Tasks Class)
Deletes a subtask.
Syntax
ANSI (Cross Platform) int DeleteCheckListItem(const char* lpszTaskListId, const char* lpszTaskId, const char* lpszId); Unicode (Windows) INT DeleteCheckListItem(LPCWSTR lpszTaskListId, LPCWSTR lpszTaskId, LPCWSTR lpszId);
int cloudcalendars_office365tasks_deletechecklistitem(void* lpObj, const char* lpszTaskListId, const char* lpszTaskId, const char* lpszId);
int DeleteCheckListItem(const QString& qsTaskListId, const QString& qsTaskId, const QString& qsId);
Remarks
Deletes a subtask identified by taskListId, taskId and id parameters. taskListId and taskIdthe parameters identifies the Task list and Task that the subtask to be deleted belongs to and id parameter identifies the subtask to be deleted. The specified subtask will be permanently removed. This operation will not remove the subtask from the CheckListItems collection
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
DeleteTask Method (Office365Tasks Class)
Deletes a task.
Syntax
ANSI (Cross Platform) int DeleteTask(const char* lpszTaskListId, const char* lpszId); Unicode (Windows) INT DeleteTask(LPCWSTR lpszTaskListId, LPCWSTR lpszId);
int cloudcalendars_office365tasks_deletetask(void* lpObj, const char* lpszTaskListId, const char* lpszId);
int DeleteTask(const QString& qsTaskListId, const QString& qsId);
Remarks
Deletes a task identified by taskListId and id parameters. taskListId parameter identifies the Task list that the task to be deleted belongs to and id parameter identifies the task to be deleted. The specified task will be permanently removed. This operation will not remove the task from the Tasks collection
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
DeleteTaskList Method (Office365Tasks Class)
Deletes a task list.
Syntax
ANSI (Cross Platform) int DeleteTaskList(const char* lpszId); Unicode (Windows) INT DeleteTaskList(LPCWSTR lpszId);
int cloudcalendars_office365tasks_deletetasklist(void* lpObj, const char* lpszId);
int DeleteTaskList(const QString& qsId);
Remarks
Deletes a Task list identified by the id parameter. The Task list and all its associated tasks will be removed, this operation will not remove the Task list from the TaskLists collection.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
GetCheckListItem Method (Office365Tasks Class)
Retrieves the subtask by Id.
Syntax
ANSI (Cross Platform) int GetCheckListItem(const char* lpszTaskListId, const char* lpszTaskId, const char* lpszId); Unicode (Windows) INT GetCheckListItem(LPCWSTR lpszTaskListId, LPCWSTR lpszTaskId, LPCWSTR lpszId);
int cloudcalendars_office365tasks_getchecklistitem(void* lpObj, const char* lpszTaskListId, const char* lpszTaskId, const char* lpszId);
int GetCheckListItem(const QString& qsTaskListId, const QString& qsTaskId, const QString& qsId);
Remarks
This method retrieves a subtask specified by its ID and adds the subtask to the beginning of the CheckListItems list. If the subtask already exists in the CheckListItems collection, it will be removed and then added to the beginning, preventing duplication.
Example(Retrieving a subtask)
office365task.GetCheckListItem("taskListId", "taskId", "id");
office365task.CheckListItems[0]; //the retrieved subtask
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
GetTask Method (Office365Tasks Class)
Retrieves the task by Id.
Syntax
ANSI (Cross Platform) int GetTask(const char* lpszTaskListId, const char* lpszId); Unicode (Windows) INT GetTask(LPCWSTR lpszTaskListId, LPCWSTR lpszId);
int cloudcalendars_office365tasks_gettask(void* lpObj, const char* lpszTaskListId, const char* lpszId);
int GetTask(const QString& qsTaskListId, const QString& qsId);
Remarks
This method retrieves a task specified by its ID and adds the task to the beginning of the Tasks list. If the task already exists in the Tasks collection, it will be removed and then added to the beginning, preventing duplication.
Example(Retrieving a task)
office365task.GetTask("taskListId", "id");
office365task.Tasks[0]; //the retrieved task
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
GetTaskField Method (Office365Tasks Class)
Retrieves the task property value by JSONPath.
Syntax
ANSI (Cross Platform) char* GetTaskField(int iindex, const char* lpszJsonPath); Unicode (Windows) LPWSTR GetTaskField(INT iindex, LPCWSTR lpszJsonPath);
char* cloudcalendars_office365tasks_gettaskfield(void* lpObj, int iindex, const char* lpszJsonPath);
QString GetTaskField(int iindex, const QString& qsJsonPath);
Remarks
This method retrieves a specific field within the task's JSON field. The first parameter, index, represents the index of the task in the Tasks collection from which to retrieve the field. The second parameter, JsonPath, is the JSON path to the field you want to retrieve. Please refer to XPath for more details on how to set the Json path. The method returns a string that represents the value of the specified JSON field.
Example (Access Fields of a Task)
office365task.GetTaskField(0, "/json/title"); // The title of the task
Error Handling (C++)
This method returns a String value; after it returns, call the GetLastErrorCode() method to obtain its result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message.
Interrupt Method (Office365Tasks Class)
Interrupt the current method.
Syntax
ANSI (Cross Platform) int Interrupt(); Unicode (Windows) INT Interrupt();
int cloudcalendars_office365tasks_interrupt(void* lpObj);
int Interrupt();
Remarks
If there is no method in progress, Interrupt simply returns, doing nothing.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
ListAttachments Method (Office365Tasks Class)
Lists all of a task's attachments.
Syntax
ANSI (Cross Platform) int ListAttachments(const char* lpszTaskListId, const char* lpszTaskId); Unicode (Windows) INT ListAttachments(LPCWSTR lpszTaskListId, LPCWSTR lpszTaskId);
int cloudcalendars_office365tasks_listattachments(void* lpObj, const char* lpszTaskListId, const char* lpszTaskId);
int ListAttachments(const QString& qsTaskListId, const QString& qsTaskId);
Remarks
This method lists all of a task's attachments. This method clears and populates the Attachments properties. For each attachment retrieved, the AttachmentList event is fired.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
ListCheckListItems Method (Office365Tasks Class)
Lists the subtasks.
Syntax
ANSI (Cross Platform) int ListCheckListItems(const char* lpszTaskListId, const char* lpszTaskId); Unicode (Windows) INT ListCheckListItems(LPCWSTR lpszTaskListId, LPCWSTR lpszTaskId);
int cloudcalendars_office365tasks_listchecklistitems(void* lpObj, const char* lpszTaskListId, const char* lpszTaskId);
int ListCheckListItems(const QString& qsTaskListId, const QString& qsTaskId);
Remarks
Retrieves a list of subtasks from the specified Task, identified by the taskListId and the taskId parameters. The retrieved subtasks are added to the CheckListItems collection. For each subtask retrieved, the CheckListItemList event is fired.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
ListTaskLists Method (Office365Tasks Class)
Lists the task lists.
Syntax
ANSI (Cross Platform) int ListTaskLists(); Unicode (Windows) INT ListTaskLists();
int cloudcalendars_office365tasks_listtasklists(void* lpObj);
int ListTaskLists();
Remarks
List all Task lists associated with the current user. The retrieved Task lists are added to the TaskLists collection. For each Task list retrieved, the TaskListList event is fired.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
ListTasks Method (Office365Tasks Class)
Lists the tasks.
Syntax
ANSI (Cross Platform) int ListTasks(const char* lpszTaskListId); Unicode (Windows) INT ListTasks(LPCWSTR lpszTaskListId);
int cloudcalendars_office365tasks_listtasks(void* lpObj, const char* lpszTaskListId);
int ListTasks(const QString& qsTaskListId);
Remarks
Retrieves a list of tasks from the specified Task list, identified by the taskListId parameter. The retrieved Task lists are added to the Tasks collection. For each Task list retrieved, the TaskList event is fired.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
Reset Method (Office365Tasks Class)
This method will reset the class.
Syntax
ANSI (Cross Platform) int Reset(); Unicode (Windows) INT Reset();
int cloudcalendars_office365tasks_reset(void* lpObj);
int Reset();
Remarks
This method will reset the class's properties to their default values.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
RetrieveAttachment Method (Office365Tasks Class)
Retrieves a task's attachment.
Syntax
ANSI (Cross Platform) int RetrieveAttachment(const char* lpszTaskListId, const char* lpszTaskId, const char* lpszId); Unicode (Windows) INT RetrieveAttachment(LPCWSTR lpszTaskListId, LPCWSTR lpszTaskId, LPCWSTR lpszId);
int cloudcalendars_office365tasks_retrieveattachment(void* lpObj, const char* lpszTaskListId, const char* lpszTaskId, const char* lpszId);
int RetrieveAttachment(const QString& qsTaskListId, const QString& qsTaskId, const QString& qsId);
Remarks
This method retrieves an attachment. id specifies the task ID for the task the attachment is attached to. The content data returns in this case
The fetched attachment can be accessed through the Attachment* properties.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
SendCustomRequest Method (Office365Tasks Class)
Send a custom HTTP request.
Syntax
ANSI (Cross Platform) int SendCustomRequest(const char* lpszHTTPMethod, const char* lpszURL, const char* lpszPostData); Unicode (Windows) INT SendCustomRequest(LPCWSTR lpszHTTPMethod, LPCWSTR lpszURL, LPCWSTR lpszPostData);
int cloudcalendars_office365tasks_sendcustomrequest(void* lpObj, const char* lpszHTTPMethod, const char* lpszURL, const char* lpszPostData);
int SendCustomRequest(const QString& qsHTTPMethod, const QString& qsURL, const QString& qsPostData);
Remarks
This method can be used to send a custom HTTP request to the server.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
SetAttachmentInStream Method (Office365Tasks Class)
Sets an attachment using a stream.
Syntax
ANSI (Cross Platform) int SetAttachmentInStream(int iIndex, CloudCalendarsStream* sInputStream); Unicode (Windows) INT SetAttachmentInStream(INT iIndex, CloudCalendarsStream* sInputStream);
int cloudcalendars_office365tasks_setattachmentinstream(void* lpObj, int iIndex, CloudCalendarsStream* sInputStream);
int SetAttachmentInStream(int iIndex, CloudCalendarsStream* sInputStream);
Remarks
This method allows for setting an attachment in the Attachments collection through a stream using the InputStream parameter. The Index parameter specifies which attachment in the Attachments collection the stream will affect.
Note: When multiple attachment sources are provided, the component prioritizes the input stream first, followed by the file path and finally the raw data.
Example (Adding an attachment from stream):
office365task.Attachments.Add(new OTAttachment("fileName.txt"));
office365task.SetAttachmentInStream(0, new FileStream("C:\fileName.txt", FileMode.Open));
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
SetTaskField Method (Office365Tasks Class)
Sets the task field value by JSONPath.
Syntax
ANSI (Cross Platform) int SetTaskField(int iindex, const char* lpszJsonPath, const char* lpszValue, int iValueType); Unicode (Windows) INT SetTaskField(INT iindex, LPCWSTR lpszJsonPath, LPCWSTR lpszValue, INT iValueType);
int cloudcalendars_office365tasks_settaskfield(void* lpObj, int iindex, const char* lpszJsonPath, const char* lpszValue, int iValueType);
int SetTaskField(int iindex, const QString& qsJsonPath, const QString& qsValue, int iValueType);
Remarks
This method updates a specific field within the event's JSON representation. The parameters for this method are as follows: the first parameter, index, represents the index of the event in the Tasks collection to be edited. The second parameter, JsonPath, specifies the JSON path to the field you want to set. Please refer to XPath for more details on how to set the Json path. The third parameter, Value, is the value to be assigned to the JSON field. The fourth parameter, ValueType, is the type of the value, which must be one of the defined types:
- 0 (Object)
- 1 (Array)
- 2 (String)
- 3 (Number)
- 4 (Bool)
- 5 (Null)
- 6 (Raw)
Example (Set/Edit Fields of a Task before Updating):
// Create a task
office365task.CreateTask("task name", taskListId);
office365task.SetTaskField(0, "/json/body", "Task body", 2); // Update notes field
office365task.SetTaskField(0, "/json/title", "new task name", 2); // Update title field
// Update task
office365task.UpdateTask(0);
For a full list of the fields a task has/can have, please refer to the official documentation of the Microsoft Graph API documentation.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
UpdateCheckListItem Method (Office365Tasks Class)
Updates a subtask.
Syntax
ANSI (Cross Platform) int UpdateCheckListItem(int iindex); Unicode (Windows) INT UpdateCheckListItem(INT iindex);
int cloudcalendars_office365tasks_updatechecklistitem(void* lpObj, int iindex);
int UpdateCheckListItem(int iindex);
Remarks
This method allows you to update an existing subtask. The index parameter specifies the position of the task in the CheckListItems collection. The method uses this index to take all the data from the specified subtask and update the corresponding subtask on the server.
To update a subtask, edit the desired task fields within the CheckListItems collection. Then, call the UpdateCheckListItem method with the index of the subtask. Note that changing the JSON data will overwrite the entire subtask, ignoring other field edits made before setting the JSON.
The OTCheckListItem type used in the CheckListItems collection includes the fields of a subtask. Refer to the OTCheckListItem type for a complete list of fields.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
UpdateTask Method (Office365Tasks Class)
Updates a task.
Syntax
ANSI (Cross Platform) int UpdateTask(int iindex); Unicode (Windows) INT UpdateTask(INT iindex);
int cloudcalendars_office365tasks_updatetask(void* lpObj, int iindex);
int UpdateTask(int iindex);
Remarks
This method allows you to update an existing task. The index parameter specifies the position of the task in the Tasks collection. The method uses this index to take all the data from the specified task and update the corresponding task on the server.
To update a task, edit the desired task fields within the Tasks collection. Then, call the UpdateTask method with the index of the task. Note that changing the JSON data will overwrite the entire task, ignoring other field edits made before setting the JSON.
The OTTaskItem type used in the Tasks collection includes the fields of a task. Refer to the OTTaskItem type for a complete list of fields. If you need to add other fields, you can use the SetTaskField method. For a complete list of fields a task can have, please refer to the Microsoft Graph API overview
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
UpdateTaskList Method (Office365Tasks Class)
Updates a task list.
Syntax
ANSI (Cross Platform) int UpdateTaskList(int iindex); Unicode (Windows) INT UpdateTaskList(INT iindex);
int cloudcalendars_office365tasks_updatetasklist(void* lpObj, int iindex);
int UpdateTaskList(int iindex);
Remarks
This method allows you to update an existing task list. The index parameter specifies the position of the task list in the TaskLists collection. The method uses this index to take all the data from the specified task list and update the corresponding task list on the server.
To update a task list, edit the desired task list fields within the TaskLists collection. Then, call the UpdateTaskList method with the index of the task list. Note that changing the JSON data will overwrite the entire task list, ignoring other field edits made before setting the JSON.
The OTTaskList type used in the TaskLists collection includes the fields of a task list. Refer to the OTTaskList type for a complete list of fields.
Error Handling (C++)
This method returns a result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. If an error occurs, the GetLastError() method can be called to retrieve the associated error message. (Note: This method's result code can also be obtained by calling the GetLastErrorCode() method after it returns.)
AttachmentList Event (Office365Tasks Class)
Fired when an attachment is retrieved from the server.
Syntax
ANSI (Cross Platform) virtual int FireAttachmentList(Office365TasksAttachmentListEventParams *e);
typedef struct {
const char *Id;
const char *Name;
const char *ContentType;
const char *LastModifiedDateTime;
int Size; int reserved; } Office365TasksAttachmentListEventParams;
Unicode (Windows) virtual INT FireAttachmentList(Office365TasksAttachmentListEventParams *e);
typedef struct {
LPCWSTR Id;
LPCWSTR Name;
LPCWSTR ContentType;
LPCWSTR LastModifiedDateTime;
INT Size; INT reserved; } Office365TasksAttachmentListEventParams;
#define EID_OFFICE365TASKS_ATTACHMENTLIST 1 virtual INT CLOUDCALENDARS_CALL FireAttachmentList(LPSTR &lpszId, LPSTR &lpszName, LPSTR &lpszContentType, LPSTR &lpszLastModifiedDateTime, INT &iSize);
class Office365TasksAttachmentListEventParams { public: const QString &Id(); const QString &Name(); const QString &ContentType(); const QString &LastModifiedDateTime(); int Size(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void AttachmentList(Office365TasksAttachmentListEventParams *e);
// Or, subclass Office365Tasks and override this emitter function. virtual int FireAttachmentList(Office365TasksAttachmentListEventParams *e) {...}
Remarks
The AttachmentList event is fired for each attachment retrieved from the server when ListAttachments is called. This event provides the attachment's Id, Name, ContentType, LastModifiedDateTime and Size.
CheckListItemList Event (Office365Tasks Class)
Fired when a subtask is retrieved from the server.
Syntax
ANSI (Cross Platform) virtual int FireCheckListItemList(Office365TasksCheckListItemListEventParams *e);
typedef struct {
const char *Id;
const char *TaskId;
const char *TaskListId;
const char *Subject; int reserved; } Office365TasksCheckListItemListEventParams;
Unicode (Windows) virtual INT FireCheckListItemList(Office365TasksCheckListItemListEventParams *e);
typedef struct {
LPCWSTR Id;
LPCWSTR TaskId;
LPCWSTR TaskListId;
LPCWSTR Subject; INT reserved; } Office365TasksCheckListItemListEventParams;
#define EID_OFFICE365TASKS_CHECKLISTITEMLIST 2 virtual INT CLOUDCALENDARS_CALL FireCheckListItemList(LPSTR &lpszId, LPSTR &lpszTaskId, LPSTR &lpszTaskListId, LPSTR &lpszSubject);
class Office365TasksCheckListItemListEventParams { public: const QString &Id(); const QString &TaskId(); const QString &TaskListId(); const QString &Subject(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void CheckListItemList(Office365TasksCheckListItemListEventParams *e);
// Or, subclass Office365Tasks and override this emitter function. virtual int FireCheckListItemList(Office365TasksCheckListItemListEventParams *e) {...}
Remarks
The CheckListItemList event is fired for each subtask retrieved from the server when ListCheckListItems is called. This event provides the subtask's Id, TaskId, TaskListId and Subject.
Error Event (Office365Tasks Class)
Fired when information is available about errors during data delivery.
Syntax
ANSI (Cross Platform) virtual int FireError(Office365TasksErrorEventParams *e);
typedef struct {
int ErrorCode;
const char *Description; int reserved; } Office365TasksErrorEventParams;
Unicode (Windows) virtual INT FireError(Office365TasksErrorEventParams *e);
typedef struct {
INT ErrorCode;
LPCWSTR Description; INT reserved; } Office365TasksErrorEventParams;
#define EID_OFFICE365TASKS_ERROR 3 virtual INT CLOUDCALENDARS_CALL FireError(INT &iErrorCode, LPSTR &lpszDescription);
class Office365TasksErrorEventParams { public: int ErrorCode(); const QString &Description(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void Error(Office365TasksErrorEventParams *e);
// Or, subclass Office365Tasks and override this emitter function. virtual int FireError(Office365TasksErrorEventParams *e) {...}
Remarks
The Error event is fired in case of exceptional conditions during message processing. Normally the class fails with an error.
The ErrorCode parameter contains an error code, and the Description parameter contains a textual description of the error. For a list of valid error codes and their descriptions, please refer to the Error Codes section.
Log Event (Office365Tasks Class)
Fired once for each log message.
Syntax
ANSI (Cross Platform) virtual int FireLog(Office365TasksLogEventParams *e);
typedef struct {
int LogLevel;
const char *Message;
const char *LogType; int reserved; } Office365TasksLogEventParams;
Unicode (Windows) virtual INT FireLog(Office365TasksLogEventParams *e);
typedef struct {
INT LogLevel;
LPCWSTR Message;
LPCWSTR LogType; INT reserved; } Office365TasksLogEventParams;
#define EID_OFFICE365TASKS_LOG 4 virtual INT CLOUDCALENDARS_CALL FireLog(INT &iLogLevel, LPSTR &lpszMessage, LPSTR &lpszLogType);
class Office365TasksLogEventParams { public: int LogLevel(); const QString &Message(); const QString &LogType(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void Log(Office365TasksLogEventParams *e);
// Or, subclass Office365Tasks and override this emitter function. virtual int FireLog(Office365TasksLogEventParams *e) {...}
Remarks
This event is fired once for each log message generated by the class. The verbosity is controlled by the LogLevel setting.
LogLevel indicates the level of message. Possible values are as follows:
0 (None) | No events are logged. |
1 (Info - default) | Informational events are logged. |
2 (Verbose) | Detailed data are logged. |
3 (Debug) | Debug data are logged. |
The value 1 (Info) logs basic information, including the URL, HTTP version, and status details.
The value 2 (Verbose) logs additional information about the request and response.
The value 3 (Debug) logs the headers and body for both the request and response, as well as additional debug information (if any).
Message is the log entry.
LogType identifies the type of log entry. Possible values are as follows:
- "Info"
- "RequestHeaders"
- "ResponseHeaders"
- "RequestBody"
- "ResponseBody"
- "ProxyRequest"
- "ProxyResponse"
- "FirewallRequest"
- "FirewallResponse"
SSLServerAuthentication Event (Office365Tasks Class)
Fired after the server presents its certificate to the client.
Syntax
ANSI (Cross Platform) virtual int FireSSLServerAuthentication(Office365TasksSSLServerAuthenticationEventParams *e);
typedef struct {
const char *CertEncoded; int lenCertEncoded;
const char *CertSubject;
const char *CertIssuer;
const char *Status;
int Accept; int reserved; } Office365TasksSSLServerAuthenticationEventParams;
Unicode (Windows) virtual INT FireSSLServerAuthentication(Office365TasksSSLServerAuthenticationEventParams *e);
typedef struct {
LPCSTR CertEncoded; INT lenCertEncoded;
LPCWSTR CertSubject;
LPCWSTR CertIssuer;
LPCWSTR Status;
BOOL Accept; INT reserved; } Office365TasksSSLServerAuthenticationEventParams;
#define EID_OFFICE365TASKS_SSLSERVERAUTHENTICATION 5 virtual INT CLOUDCALENDARS_CALL FireSSLServerAuthentication(LPSTR &lpCertEncoded, INT &lenCertEncoded, LPSTR &lpszCertSubject, LPSTR &lpszCertIssuer, LPSTR &lpszStatus, BOOL &bAccept);
class Office365TasksSSLServerAuthenticationEventParams { public: const QByteArray &CertEncoded(); const QString &CertSubject(); const QString &CertIssuer(); const QString &Status(); bool Accept(); void SetAccept(bool bAccept); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void SSLServerAuthentication(Office365TasksSSLServerAuthenticationEventParams *e);
// Or, subclass Office365Tasks and override this emitter function. virtual int FireSSLServerAuthentication(Office365TasksSSLServerAuthenticationEventParams *e) {...}
Remarks
During this event, the client can decide whether or not to continue with the connection process. The Accept parameter is a recommendation on whether to continue or close the connection. This is just a suggestion: application software must use its own logic to determine whether or not to continue.
When Accept is False, Status shows why the verification failed (otherwise, Status contains the string OK). If it is decided to continue, you can override and accept the certificate by setting the Accept parameter to True.
SSLStatus Event (Office365Tasks Class)
Fired when secure connection progress messages are available.
Syntax
ANSI (Cross Platform) virtual int FireSSLStatus(Office365TasksSSLStatusEventParams *e);
typedef struct {
const char *Message; int reserved; } Office365TasksSSLStatusEventParams;
Unicode (Windows) virtual INT FireSSLStatus(Office365TasksSSLStatusEventParams *e);
typedef struct {
LPCWSTR Message; INT reserved; } Office365TasksSSLStatusEventParams;
#define EID_OFFICE365TASKS_SSLSTATUS 6 virtual INT CLOUDCALENDARS_CALL FireSSLStatus(LPSTR &lpszMessage);
class Office365TasksSSLStatusEventParams { public: const QString &Message(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void SSLStatus(Office365TasksSSLStatusEventParams *e);
// Or, subclass Office365Tasks and override this emitter function. virtual int FireSSLStatus(Office365TasksSSLStatusEventParams *e) {...}
Remarks
The event is fired for informational and logging purposes only. This event tracks the progress of the connection.
TaskList Event (Office365Tasks Class)
Fired when a task is retrieved from the server.
Syntax
ANSI (Cross Platform) virtual int FireTaskList(Office365TasksTaskListEventParams *e);
typedef struct {
const char *Id;
const char *TaskListId;
const char *Subject; int reserved; } Office365TasksTaskListEventParams;
Unicode (Windows) virtual INT FireTaskList(Office365TasksTaskListEventParams *e);
typedef struct {
LPCWSTR Id;
LPCWSTR TaskListId;
LPCWSTR Subject; INT reserved; } Office365TasksTaskListEventParams;
#define EID_OFFICE365TASKS_TASKLIST 7 virtual INT CLOUDCALENDARS_CALL FireTaskList(LPSTR &lpszId, LPSTR &lpszTaskListId, LPSTR &lpszSubject);
class Office365TasksTaskListEventParams { public: const QString &Id(); const QString &TaskListId(); const QString &Subject(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void TaskList(Office365TasksTaskListEventParams *e);
// Or, subclass Office365Tasks and override this emitter function. virtual int FireTaskList(Office365TasksTaskListEventParams *e) {...}
Remarks
The TaskList event is fired for each task retrieved from the server when ListTasks is called. This event provides the task's Id, TaskListId and Subject.
TaskListList Event (Office365Tasks Class)
Fired when a task list is retrieved from the server.
Syntax
ANSI (Cross Platform) virtual int FireTaskListList(Office365TasksTaskListListEventParams *e);
typedef struct {
const char *Id;
const char *Name; int reserved; } Office365TasksTaskListListEventParams;
Unicode (Windows) virtual INT FireTaskListList(Office365TasksTaskListListEventParams *e);
typedef struct {
LPCWSTR Id;
LPCWSTR Name; INT reserved; } Office365TasksTaskListListEventParams;
#define EID_OFFICE365TASKS_TASKLISTLIST 8 virtual INT CLOUDCALENDARS_CALL FireTaskListList(LPSTR &lpszId, LPSTR &lpszName);
class Office365TasksTaskListListEventParams { public: const QString &Id(); const QString &Name(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void TaskListList(Office365TasksTaskListListEventParams *e);
// Or, subclass Office365Tasks and override this emitter function. virtual int FireTaskListList(Office365TasksTaskListListEventParams *e) {...}
Remarks
The TaskListList event is fired for each task list retrieved from the server when ListTaskLists is called. This event provides the task list's Id and Name.
Transfer Event (Office365Tasks Class)
Fired while a document transfers (delivers document).
Syntax
ANSI (Cross Platform) virtual int FireTransfer(Office365TasksTransferEventParams *e);
typedef struct {
int Direction;
int64 BytesTransferred;
int PercentDone;
const char *Text; int lenText; int reserved; } Office365TasksTransferEventParams;
Unicode (Windows) virtual INT FireTransfer(Office365TasksTransferEventParams *e);
typedef struct {
INT Direction;
LONG64 BytesTransferred;
INT PercentDone;
LPCSTR Text; INT lenText; INT reserved; } Office365TasksTransferEventParams;
#define EID_OFFICE365TASKS_TRANSFER 9 virtual INT CLOUDCALENDARS_CALL FireTransfer(INT &iDirection, LONG64 &lBytesTransferred, INT &iPercentDone, LPSTR &lpText, INT &lenText);
class Office365TasksTransferEventParams { public: int Direction(); qint64 BytesTransferred(); int PercentDone(); const QByteArray &Text(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void Transfer(Office365TasksTransferEventParams *e);
// Or, subclass Office365Tasks and override this emitter function. virtual int FireTransfer(Office365TasksTransferEventParams *e) {...}
Remarks
The Text parameter contains the portion of the document text being received. It is empty if data are being posted to the server.
The BytesTransferred parameter contains the number of bytes transferred in this Direction since the beginning of the document text (excluding HTTP response headers).
The Direction parameter shows whether the client (0) or the server (1) is sending the data.
The PercentDone parameter shows the progress of the transfer in the corresponding direction. If PercentDone can not be calculated the value will be -1.
Note: Events are not re-entrant. Performing time-consuming operations within this event will prevent it from firing again in a timely manner and may affect overall performance.
Certificate Type
This is the digital certificate being used.
Syntax
CloudCalendarsCertificate (declared in cloudcalendars.h)
Remarks
This type describes the current digital certificate. The certificate may be a public or private key. The fields are used to identify or select certificates.
Fields
EffectiveDate
char* (read-only)
Default Value: ""
The date on which this certificate becomes valid. Before this date, it is not valid. The date is localized to the system's time zone. The following example illustrates the format of an encoded date:
23-Jan-2000 15:00:00.
ExpirationDate
char* (read-only)
Default Value: ""
The date on which the certificate expires. After this date, the certificate will no longer be valid. The date is localized to the system's time zone. The following example illustrates the format of an encoded date:
23-Jan-2001 15:00:00.
ExtendedKeyUsage
char* (read-only)
Default Value: ""
A comma-delimited list of extended key usage identifiers. These are the same as ASN.1 object identifiers (OIDs).
Fingerprint
char* (read-only)
Default Value: ""
The hex-encoded, 16-byte MD5 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: bc:2a:72:af:fe:58:17:43:7a:5f:ba:5a:7c:90:f7:02
FingerprintSHA1
char* (read-only)
Default Value: ""
The hex-encoded, 20-byte SHA-1 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: 30:7b:fa:38:65:83:ff:da:b4:4e:07:3f:17:b8:a4:ed:80:be:ff:84
FingerprintSHA256
char* (read-only)
Default Value: ""
The hex-encoded, 32-byte SHA-256 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: 6a:80:5c:33:a9:43:ea:b0:96:12:8a:64:96:30:ef:4a:8a:96:86:ce:f4:c7:be:10:24:8e:2b:60:9e:f3:59:53
Issuer
char* (read-only)
Default Value: ""
The issuer of the certificate. This field contains a string representation of the name of the issuing authority for the certificate.
PrivateKey
char* (read-only)
Default Value: ""
The private key of the certificate (if available). The key is provided as PEM/Base64-encoded data.
Note: The PrivateKey may be available but not exportable. In this case, PrivateKey returns an empty string.
PrivateKeyAvailable
int (read-only)
Default Value: FALSE
Whether a PrivateKey is available for the selected certificate. If PrivateKeyAvailable is True, the certificate may be used for authentication purposes (e.g., server authentication).
PrivateKeyContainer
char* (read-only)
Default Value: ""
The name of the PrivateKey container for the certificate (if available). This functionality is available only on Windows platforms.
PublicKey
char* (read-only)
Default Value: ""
The public key of the certificate. The key is provided as PEM/Base64-encoded data.
PublicKeyAlgorithm
char* (read-only)
Default Value: ""
The textual description of the certificate's public key algorithm. The property contains either the name of the algorithm (e.g., "RSA" or "RSA_DH") or an object identifier (OID) string representing the algorithm.
PublicKeyLength
int (read-only)
Default Value: 0
The length of the certificate's public key (in bits). Common values are 512, 1024, and 2048.
SerialNumber
char* (read-only)
Default Value: ""
The serial number of the certificate encoded as a string. The number is encoded as a series of hexadecimal digits, with each pair representing a byte of the serial number.
SignatureAlgorithm
char* (read-only)
Default Value: ""
The text description of the certificate's signature algorithm. The property contains either the name of the algorithm (e.g., "RSA" or "RSA_MD5RSA") or an object identifier (OID) string representing the algorithm.
Store
char*
Default Value: "MY"
The name of the certificate store for the client certificate.
The StoreType field denotes the type of the certificate store specified by Store. If the store is password-protected, specify the password in StorePassword.
Store is used in conjunction with the Subject field to specify client certificates. If Store has a value, and Subject or Encoded is set, a search for a certificate is initiated. Please see the Subject field for details.
Designations of certificate stores are platform dependent.
The following designations are the most common User and Machine certificate stores in Windows:
MY | A certificate store holding personal certificates with their associated private keys. |
CA | Certifying authority certificates. |
ROOT | Root certificates. |
When the certificate store type is cstPFXFile, this property must be set to the name of the file. When the type is cstPFXBlob, the property must be set to the binary contents of a PFX file (i.e., PKCS#12 certificate store).
StorePassword
char*
Default Value: ""
If the type of certificate store requires a password, this field is used to specify the password needed to open the certificate store.
StoreType
int
Default Value: 0
The type of certificate store for this certificate.
The class supports both public and private keys in a variety of formats. When the cstAuto value is used, the class will automatically determine the type. This field can take one of the following values:
0 (cstUser - default) | For Windows, this specifies that the certificate store is a certificate store owned by the current user.
Note: This store type is not available in Java. |
1 (cstMachine) | For Windows, this specifies that the certificate store is a machine store.
Note: This store type is not available in Java. |
2 (cstPFXFile) | The certificate store is the name of a PFX (PKCS#12) file containing certificates. |
3 (cstPFXBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in PFX (PKCS#12) format. |
4 (cstJKSFile) | The certificate store is the name of a Java Key Store (JKS) file containing certificates.
Note: This store type is only available in Java. |
5 (cstJKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in Java Key Store (JKS) format.
Note: This store type is only available in Java. |
6 (cstPEMKeyFile) | The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate. |
7 (cstPEMKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a private key and an optional certificate. |
8 (cstPublicKeyFile) | The certificate store is the name of a file that contains a PEM- or DER-encoded public key certificate. |
9 (cstPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a PEM- or DER-encoded public key certificate. |
10 (cstSSHPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains an SSH-style public key. |
11 (cstP7BFile) | The certificate store is the name of a PKCS#7 file containing certificates. |
12 (cstP7BBlob) | The certificate store is a string (binary) representing a certificate store in PKCS#7 format. |
13 (cstSSHPublicKeyFile) | The certificate store is the name of a file that contains an SSH-style public key. |
14 (cstPPKFile) | The certificate store is the name of a file that contains a PPK (PuTTY Private Key). |
15 (cstPPKBlob) | The certificate store is a string (binary) that contains a PPK (PuTTY Private Key). |
16 (cstXMLFile) | The certificate store is the name of a file that contains a certificate in XML format. |
17 (cstXMLBlob) | The certificate store is a string that contains a certificate in XML format. |
18 (cstJWKFile) | The certificate store is the name of a file that contains a JWK (JSON Web Key). |
19 (cstJWKBlob) | The certificate store is a string that contains a JWK (JSON Web Key). |
21 (cstBCFKSFile) | The certificate store is the name of a file that contains a BCFKS (Bouncy Castle FIPS Key Store).
Note: This store type is only available in Java and .NET. |
22 (cstBCFKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in BCFKS (Bouncy Castle FIPS Key Store) format.
Note: This store type is only available in Java and .NET. |
23 (cstPKCS11) | The certificate is present on a physical security key accessible via a PKCS#11 interface.
To use a security key, the necessary data must first be collected using the CERTMGR class. The ListStoreCertificates method may be called after setting CertStoreType to cstPKCS11, CertStorePassword to the PIN, and CertStore to the full path of the PKCS#11 DLL. The certificate information returned in the CertList event's CertEncoded parameter may be saved for later use. When using a certificate, pass the previously saved security key information as the Store and set StorePassword to the PIN. Code Example. SSH Authentication with Security Key:
|
99 (cstAuto) | The store type is automatically detected from the input data. This setting may be used with both public and private keys and can detect any of the supported formats automatically. |
SubjectAltNames
char* (read-only)
Default Value: ""
Comma-separated lists of alternative subject names for the certificate.
ThumbprintMD5
char* (read-only)
Default Value: ""
The MD5 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
ThumbprintSHA1
char* (read-only)
Default Value: ""
The SHA-1 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
ThumbprintSHA256
char* (read-only)
Default Value: ""
The SHA-256 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
Usage
char* (read-only)
Default Value: ""
The text description of UsageFlags.
This value will be one or more of the following strings and will be separated by commas:
- Digital Signature
- Non-Repudiation
- Key Encipherment
- Data Encipherment
- Key Agreement
- Certificate Signing
- CRL Signing
- Encipher Only
If the provider is OpenSSL, the value is a comma-separated list of X.509 certificate extension names.
UsageFlags
int (read-only)
Default Value: 0
The flags that show intended use for the certificate. The value of UsageFlags is a combination of the following flags:
0x80 | Digital Signature |
0x40 | Non-Repudiation |
0x20 | Key Encipherment |
0x10 | Data Encipherment |
0x08 | Key Agreement |
0x04 | Certificate Signing |
0x02 | CRL Signing |
0x01 | Encipher Only |
Please see the Usage field for a text representation of UsageFlags.
This functionality currently is not available when the provider is OpenSSL.
Version
char* (read-only)
Default Value: ""
The certificate's version number. The possible values are the strings "V1", "V2", and "V3".
Subject
char*
Default Value: ""
The subject of the certificate used for client authentication.
This property must be set after all other certificate properties are set. When this property is set, a search is performed in the current certificate store to locate a certificate with a matching subject.
If a matching certificate is found, the field is set to the full subject of the matching certificate.
If an exact match is not found, the store is searched for subjects containing the value of the property.
If a match is still not found, the property is set to an empty string, and no certificate is selected.
The special value "*" picks a random certificate in the certificate store.
The certificate subject is a comma-separated list of distinguished name fields and values. For instance, "CN=www.server.com, OU=test, C=US, E=support@nsoftware.com". Common fields and their meanings are as follows:
Field | Meaning |
CN | Common Name. This is commonly a hostname like www.server.com. |
O | Organization |
OU | Organizational Unit |
L | Locality |
S | State |
C | Country |
E | Email Address |
If a field value contains a comma, it must be quoted.
Encoded
char*
Default Value: ""
The certificate (PEM/Base64 encoded). This field is used to assign a specific certificate. The Store and Subject fields also may be used to specify a certificate.
When Encoded is set, a search is initiated in the current Store for the private key of the certificate. If the key is found, Subject is updated to reflect the full subject of the selected certificate; otherwise, Subject is set to an empty string.
Constructors
Certificate()
Creates a instance whose properties can be set. This is useful for use with when generating new certificates.
Certificate(const char* lpEncoded, int lenEncoded)
Parses Encoded as an X.509 public key.
Certificate(int iStoreType, const char* lpStore, int lenStore, const char* lpszStorePassword, const char* lpszSubject)
StoreType identifies the type of certificate store to use. See for descriptions of the different certificate stores. Store is a byte array containing the certificate data. StorePassword is the password used to protect the store.
After the store has been successfully opened, the component will attempt to find the certificate identified by Subject . This can be either a complete or a substring match of the X.509 certificate's subject Distinguished Name (DN). The Subject parameter can also take an MD5, SHA-1, or SHA-256 thumbprint of the certificate to load in a "Thumbprint=value" format.
Firewall Type
The firewall the component will connect through.
Syntax
CloudCalendarsFirewall (declared in cloudcalendars.h)
Remarks
When connecting through a firewall, this type is used to specify different properties of the firewall, such as the firewall Host and the FirewallType.
Fields
AutoDetect
int
Default Value: FALSE
Whether to automatically detect and use firewall system settings, if available.
FirewallType
int
Default Value: 0
The type of firewall to connect through. The applicable values are as follows:
fwNone (0) | No firewall (default setting). |
fwTunnel (1) | Connect through a tunneling proxy. Port is set to 80. |
fwSOCKS4 (2) | Connect through a SOCKS4 Proxy. Port is set to 1080. |
fwSOCKS5 (3) | Connect through a SOCKS5 Proxy. Port is set to 1080. |
fwSOCKS4A (10) | Connect through a SOCKS4A Proxy. Port is set to 1080. |
Host
char*
Default Value: ""
The name or IP address of the firewall (optional). If a Host is given, the requested connections will be authenticated through the specified firewall when connecting.
If this field is set to a Domain Name, a DNS request is initiated. Upon successful termination of the request, this field is set to the corresponding address. If the search is not successful, the class fails with an error.
Password
char*
Default Value: ""
A password if authentication is to be used when connecting through the firewall. If Host is specified, the User and Password fields are used to connect and authenticate to the given firewall. If the authentication fails, the class fails with an error.
Port
int
Default Value: 0
The Transmission Control Protocol (TCP) port for the firewall Host. See the description of the Host field for details.
Note: This field is set automatically when FirewallType is set to a valid value. See the description of the FirewallType field for details.
User
char*
Default Value: ""
A username if authentication is to be used when connecting through a firewall. If Host is specified, this field and the Password field are used to connect and authenticate to the given Firewall. If the authentication fails, the class fails with an error.
Constructors
Firewall()
OAuthSettings Type
The settings to use to authenticate with the service provider.
Syntax
CloudCalendarsOAuthSettings (declared in cloudcalendars.h)
Remarks
Used to set give the class the necessary information needed to complete OAuth authentication.
Fields
AccessToken
char*
Default Value: ""
The access token returned by the authorization server. This is set when the class makes a request to the token server.
AuthorizationCode
char*
Default Value: ""
The authorization code that is exchanged for an access token. This is required to be set when the OAuthClientProfile property is set to the Web profile. Otherwise, this field is for information purposes only.
AuthorizationScope
char*
Default Value: ""
The scope request or response parameter used during authorization.
ClientId
char*
Default Value: ""
The id of the client assigned when registering the application.
ClientProfile
int
Default Value: 0
The type of client that is requesting authorization. See the introduction section for more information. Possible values are:
0 (cocpApplication - Default) | The application profile is applicable to applications that are run by the user directly. For instance a windows form application would use the application profile. To authorize your application (client) using the application profile see the introduction section. |
1 (cocpWeb) | The Web profile is applicable to applications that are run on the server side where the user uses the application from a web browser. To authorize your application (client) using this profile follow see the introduction section. |
ClientSecret
char*
Default Value: ""
The secret value for the client assigned when registering the application.
GrantType
int
Default Value: 0
The OAuth grant type used to acquire an OAuth access token. See the introduction section for more information. Possible values are:
0 (cogtAuthorizationCode - Default) | Authorization Code grant type |
1 (cogtImplicit) | Implicit grant type |
2 (cogtPassword) | Resource Owner Password Credentials grant type |
3 (cogtClientCredentials) | Client Credentials grant type |
RefreshToken
char*
Default Value: ""
Specifies the refresh token received from or sent to the authorization server. This field is set automatically if a refresh token is retrieved from the token server. If the OAuthAutomaticRefresh configuration setting is set to true, and the OAuthGrantType field is set to a grant that can use refresh tokens.
RequestRefreshToken
int
Default Value: TRUE
Specifies whether the class will request a refresh token during authorization. By default, this value is True.
When True, the class will automatically add the necessary scopes or parameters to obtain a refresh token. When False, this field will have no effect. If the necessary scopes or parameters are specified manually, a refresh token can still be obtained.
Note: This field is only applicable when the OAuthGrantType field is set to cogtAuthorizationCode.
ReturnURL
char*
Default Value: ""
The URL where the user (browser) returns after authenticating. This field is mapped to the redirect_uri parameter when making a request to the authorization server. Typically, this is automatically set by the class when using the embedded web server. If the OAuthWebServerPort or OAuthWebServerHost configuration settings is set, then this field should be set to match. If using the Web client profile, this should be set to the place where the authorization code will be parsed out of the response after the user finishes authorizing.
ServerAuthURL
char*
Default Value: ""
The URL of the authorization server.
ServerTokenURL
char*
Default Value: ""
The URL of the token server used to obtain the access token.
WebAuthURL
char* (read-only)
Default Value: ""
The URL to which the user should be re-directed for authorization. This field is used to get the URL that the user should be redirected to when using the Web client profile. See introduction section for more information.
Constructors
OAuthSettings()
OTAttachment Type
Holds information about an attachment.
Syntax
CloudCalendarsOTAttachment (declared in cloudcalendars.h)
Remarks
Holds information about an attachment.
Fields
ContentType
char* (read-only)
Default Value: ""
This field contains the content type of the attachment.
Data
char*
Default Value: ""
This field contains the raw data of the attachment. Only after calling the RetrieveAttachment method
FileName
char*
Default Value: ""
This field contains the local file name associated with the attachment.
Id
char* (read-only)
Default Value: ""
This field contains the attachment identifier of the attachment.
JSON
char*
Default Value: ""
A JSON representation of the attachment. Change this field to set raw JSON content to send on the next update. Other fields values will be ignored in this case.
LastModifiedDate
char*
Default Value: ""
This field contains the date and time when the attachment was last modified.
Name
char*
Default Value: ""
This field contains the name of the attachment.
Size
int
Default Value: 0
This field contains the size in bytes of the attachment.
TaskId
char* (read-only)
Default Value: ""
This field contains the task identifier of the attachment.
TaskListId
char* (read-only)
Default Value: ""
The ID of the task list that contains the task.
Constructors
OTAttachment()
OTAttachment(const char* lpszFileName)
OTAttachment(const char* lpszName, const char* lpszFileName)
OTAttachment(const char* lpszName, CloudCalendarsStream* sInputStream)
OTCheckListItem Type
Holds information about a subtask.
Syntax
CloudCalendarsOTCheckListItem (declared in cloudcalendars.h)
Remarks
Holds information about a subtask.
Fields
CheckedDateTime
char* (read-only)
Default Value: ""
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
CreatedDateTime
char* (read-only)
Default Value: ""
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
DisplayName
char*
Default Value: ""
Indicates the title of the checklistItem.
Id
char* (read-only)
Default Value: ""
The unique identifier of the task.
IsChecked
int
Default Value: FALSE
State that indicates whether the item is checked off or not.
TaskId
char* (read-only)
Default Value: ""
The ID of the task that contains the subtask.
TaskListId
char* (read-only)
Default Value: ""
The ID of the task list that contains the task.
Constructors
OTCheckListItem()
OTTaskItem Type
Holds information about a task.
Syntax
CloudCalendarsOTTaskItem (declared in cloudcalendars.h)
Remarks
Holds information about a task.
Fields
Body
char*
Default Value: ""
The task body that typically contains information about the task. Note that only HTML type is supported.
BodyLastModifiedDateTime
char* (read-only)
Default Value: ""
The date and time when the task body was last modified. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'.
Categories
char*
Default Value: ""
The categories associated with the task. Each category corresponds to the displayName property of an outlookCategory defined for the user.
CompletedDateTime
char*
Default Value: ""
The date and time the task was finished.
CompletedTimeZone
char*
Default Value: ""
The time zone of the time the task was finished.
CreatedDateTime
char* (read-only)
Default Value: ""
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
DueDateTime
char*
Default Value: ""
The date and time the task is to be finished.
DueTimeZone
char*
Default Value: ""
The time zone of the time the task is to be finished.
HasAttachments
int (read-only)
Default Value: FALSE
Set to true if the task has attachments.
Id
char* (read-only)
Default Value: ""
The unique identifier of the task.
Importance
int
Default Value: 0
The importance of the task.
Possible values are:
- 0 (otiLow)
- 1 (otiNormal)
- 2 (otiHigh)
IsReminderOn
int
Default Value: FALSE
Set to true if an alert is set to remind the user of the task.
JSON
char*
Default Value: ""
A JSON representation of the task. Change this field to set raw JSON content to send on the next update. Other fields values will be ignored in this case.
LastModifiedDateTime
char* (read-only)
Default Value: ""
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
RecurDayOfMonth
int
Default Value: 0
The day of the month on which the task occurs. Required if type is absoluteMonthly or absoluteYearly.
RecurDaysOfWeek
char*
Default Value: ""
A space separated collection of the days of the week on which the task occurs. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. If type is relativeMonthly or relativeYearly, and daysOfWeek specifies more than one day, the task falls on the first day that satisfies the pattern. Required if type is weekly, relativeMonthly, or relativeYearly.
RecurEndDate
char*
Default Value: ""
The date to stop applying the recurrence pattern. Depending on the recurrence pattern of the task, the last occurrence of the meeting may not be this date. Required if type is endDate.
RecurFirstDayOfWeek
char*
Default Value: ""
The first day of the week. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. Default is sunday. Required if type is weekly.
RecurIndex
char*
Default Value: ""
Specifies on which instance of the allowed days specified in daysOfWeek the task occurs, counted from the first instance in the month. The possible values are: first, second, third, fourth, last. Default is first. Optional and used if type is relativeMonthly or relativeYearly.
RecurInterval
int
Default Value: 0
The number of units between occurrences, where units can be in days, weeks, months, or years, depending on the type. Required. Set to 0 to disable recurrence.
RecurMonth
int
Default Value: 0
The month in which the task occurs. This is a number from 1 to 12.
RecurNumberOfOccurrences
int
Default Value: 0
The number of times to repeat the task. Required and must be positive if type is numbered.
RecurRangeType
int
Default Value: 0
The recurrence range.
Possible values are:
- 0 (otrrtEndDate)
- 1 (otrrtNoEnd)
- 2 (otrrtNumbered)
RecurStartDate
char*
Default Value: ""
The date to start applying the recurrence pattern. The first occurrence of the meeting may be this date or later, depending on the recurrence pattern of the task. Must be the same value as the start property of the recurring task. Required.
RecurTimeZone
char*
Default Value: ""
Time zone for the startDate and endDate properties. Optional. If not specified, the time zone of the event is used.
RecurType
int
Default Value: 0
The recurrence pattern type
Possible values are:
- 0 (otrtDaily)
- 1 (otrtWeekly)
- 2 (otrtAbsoluteMonthly)
- 3 (otrtRelativeMonthly)
- 4 (otrtAbsoluteYearly)
- 5 (otrtRelativeYearly)
ReminderDateTime
char*
Default Value: ""
The date and time for a reminder alert of the task to occur.
ReminderTimeZone
char*
Default Value: ""
The time zone of the time for a reminder alert of the task to occur.
StartDateTime
char*
Default Value: ""
The date and time at which the task is scheduled to start.
StartTimeZone
char*
Default Value: ""
The time zone of the time at which the task is scheduled to start.
Status
int
Default Value: 0
The status of the task.
Possible values are:
- 0 (otsNotStarted)
- 1 (otsInProgress)
- 2 (otsCompleted)
- 3 (otsWaitingOnOthers)
- 4 (otsDeferred)
TaskListId
char* (read-only)
Default Value: ""
The ID of the task list that contains the task.
Title
char*
Default Value: ""
A brief description of the task.
Constructors
OTTaskItem()
OTTaskList Type
Holds information about a task list.
Syntax
CloudCalendarsOTTaskList (declared in cloudcalendars.h)
Remarks
Holds information about a task list.
Fields
DisplayName
char*
Default Value: ""
the name of the task list
Id
char* (read-only)
Default Value: ""
The unique identifier of the task list.
IsDefault
int (read-only)
Default Value: FALSE
True if this is the default task list where new tasks are created by default, false otherwise
IsOwner
int (read-only)
Default Value: FALSE
True if the user is the owner of the given task list.
IsShared
int (read-only)
Default Value: FALSE
True if the task list is shared with other users.
Constructors
OTTaskList()
Proxy Type
The proxy the component will connect to.
Syntax
CloudCalendarsProxy (declared in cloudcalendars.h)
Remarks
When connecting through a proxy, this type is used to specify different properties of the proxy, such as the Server and the AuthScheme.
Fields
AuthScheme
int
Default Value: 0
The type of authorization to perform when connecting to the proxy. This is used only when the User and Password fields are set.
AuthScheme should be set to authNone (3) when no authentication is expected.
By default, AuthScheme is authBasic (0), and if the User and Password fields are set, the class will attempt basic authentication.
If AuthScheme is set to authDigest (1), digest authentication will be attempted instead.
If AuthScheme is set to authProprietary (2), then the authorization token will not be generated by the class. Look at the configuration file for the class being used to find more information about manually setting this token.
If AuthScheme is set to authNtlm (4), NTLM authentication will be used.
For security reasons, setting this field will clear the values of User and Password.
AutoDetect
int
Default Value: FALSE
Whether to automatically detect and use proxy system settings, if available. The default value is false.
Password
char*
Default Value: ""
A password if authentication is to be used for the proxy.
If AuthScheme is set to Basic Authentication, the User and Password fields are Base64 encoded and the proxy authentication token will be generated in the form Basic [encoded-user-password].
If AuthScheme is set to Digest Authentication, the User and Password fields are used to respond to the Digest Authentication challenge from the server.
If AuthScheme is set to NTLM Authentication, the User and Password fields are used to authenticate through NTLM negotiation.
Port
int
Default Value: 80
The Transmission Control Protocol (TCP) port for the proxy Server (default 80). See the description of the Server field for details.
Server
char*
Default Value: ""
If a proxy Server is given, then the HTTP request is sent to the proxy instead of the server otherwise specified.
If the Server field is set to a domain name, a DNS request is initiated. Upon successful termination of the request, the Server field is set to the corresponding address. If the search is not successful, an error is returned.
SSL
int
Default Value: 0
When to use a Secure Sockets Layer (SSL) for the connection to the proxy. The applicable values are as follows:
psAutomatic (0) | Default setting. If the URL is an https URL, the class will use the psTunnel option. If the URL is an http URL, the class will use the psNever option. |
psAlways (1) | The connection is always SSL-enabled. |
psNever (2) | The connection is not SSL-enabled. |
psTunnel (3) | The connection is made through a tunneling (HTTP) proxy. |
User
char*
Default Value: ""
A username if authentication is to be used for the proxy.
If AuthScheme is set to Basic Authentication, the User and Password fields are Base64 encoded and the proxy authentication token will be generated in the form Basic [encoded-user-password].
If AuthScheme is set to Digest Authentication, the User and Password fields are used to respond to the Digest Authentication challenge from the server.
If AuthScheme is set to NTLM Authentication, the User and Password fields are used to authenticate through NTLM negotiation.
Constructors
Proxy()
Proxy(const char* lpszServer, int iPort)
Proxy(const char* lpszServer, int iPort, const char* lpszUser, const char* lpszPassword)
CloudCalendarsList Type
Syntax
CloudCalendarsList<T> (declared in cloudcalendars.h)
Remarks
CloudCalendarsList is a generic class that is used to hold a collection of objects of type T, where T is one of the custom types supported by the Office365Tasks class.
Methods | |
GetCount |
This method returns the current size of the collection.
int GetCount() {}
|
SetCount |
This method sets the size of the collection. This method returns 0 if setting the size was successful; or -1 if the collection is ReadOnly. When adding additional objects to a collection call this method to specify the new size. Increasing the size of the collection preserves existing objects in the collection.
int SetCount(int count) {}
|
Get |
This method gets the item at the specified position. The index parameter specifies the index of the item in the collection. This method returns NULL if an invalid index is specified.
T* Get(int index) {}
|
Set |
This method sets the item at the specified position. The index parameter specifies the index of the item in the collection that is being set. This method returns -1 if an invalid index is specified. Note: Objects created using the new operator must be freed using the delete operator; they will not be automatically freed by the class.
T* Set(int index, T* value) {}
|
CloudCalendarsStream Type
Syntax
CloudCalendarsStream (declared in cloudcalendars.h)
Remarks
The Office365Tasks class includes one or more API members that take a stream object as a parameter. To use such API members, create a concrete class that implements the CloudCalendarsStream interface and pass the Office365Tasks class an instance of that concrete class.
When implementing the CloudCalendarsStream interface's properties and methods, they must behave as described below. If the concrete class's implementation does not behave as expected, undefined behavior may occur.
Properties | |
CanRead |
Whether the stream supports reading.
bool CanRead() { return true; } |
CanSeek |
Whether the stream supports seeking.
bool CanSeek() { return true; } |
CanWrite |
Whether the stream supports writing.
bool CanWrite() { return true; } |
Length |
Gets the length of the stream, in bytes.
int64 GetLength() = 0; |
Methods | |
Close |
Closes the stream, releasing all resources currently allocated for it.
void Close() {} This method is called automatically when a CloudCalendarsStream object is deleted. |
Flush |
Forces all data held by the stream's buffers to be written out to storage.
int Flush() { return 0; } Must return 0 if flushing is successful; or -1 if an error occurs or the stream is closed. If the stream does not support writing, this method must do nothing and return 0. |
Read |
Reads a sequence of bytes from the stream and advances the current position within the stream by the number of bytes read.
int Read(void* buffer, int count) = 0; Buffer specifies the buffer to populate with data from the stream. Count specifies the number of bytes that should be read from the stream. Must return the total number of bytes read into Buffer; this may be less than Count if that many bytes are not currently available, or 0 if the end of the stream has been reached. Must return -1 if an error occurs, if reading is not supported, or if the stream is closed. |
Seek |
Sets the current position within the stream based on a particular point of origin.
int64 Seek(int64 offset, int seekOrigin) = 0; Offset specifies the offset in the stream to seek to, relative to SeekOrigin. Valid values for SeekOrigin are:
Must return the new position within the stream; or -1 if an error occurs, if seeking is not supported, or if the stream is closed (however, see note below). If -1 is returned, the current position within the stream must remain unchanged. Note: If the stream is not closed, it must always be possible to call this method with an Offset of 0 and a SeekOrigin of 1 to obtain the current position within the stream, even if seeking is not otherwise supported. |
Write |
Writes a sequence of bytes to the stream and advances the current position within the stream by the number of bytes written.
int Write(const void* buffer, int count) = 0; Buffer specifies the buffer with data to write to the stream. Count specifies the number of bytes that should be written to the stream. Must return the total number of bytes written to the stream; this may be less than Count if that many bytes could not be written. Must return -1 if an error occurs, if writing is not supported, or if the stream is closed. |
Config Settings (Office365Tasks Class)
The class accepts one or more of the following configuration settings. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these internal properties is provided through the Config method.Office365Tasks Config Settings
The default value is 2097152 (2MiBs).
The default value is 2097152 (2MiBs).
The default value is 100.
The default value is 100.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
When XPath is set to a valid path, XElement points to the name of the element, with XText, XParent, XSubTree, XChildCount, XChildName[i], and XChildXText[i] providing other properties of the element.
XPath syntax is available for both XML and JSON documents. An XPath is a series of one or more element accessors separated by the / character, for example, /A/B/C/D. An XPath can be absolute (i.e., it starts with /), or it can be relative to the current XPath location.
The following are possible values for an element accessor, which operates relative to the current location specified by the XPath accessors, which proceed it in the overall XPath string:
Accessor | Description |
name | The first element with a particular name. Can be *. |
[i] | The i-th element. |
name[i] | The i-th element with a particular name. |
[last()] | The last element. |
[last()-i] | The element i before the last element. |
name[@attrname="attrvalue"] | The first element with a particular name that contains the specified attribute-value pair.
Supports single and double quotes. (XML Only) |
. | The current element. |
.. | The parent element. |
For example, assume the following XML and JSON responses.
XML:
<firstlevel> <one>value</one> <two> <item>first</item> <item>second</item> </two> <three>value three</three> </firstlevel>
JSON:
{ "firstlevel": { "one": "value", "two": ["first", "second"], "three": "value three" } }
The following are examples of valid XPaths for these responses:
Description | XML XPath | JSON XPath |
Document root | / | /json |
Specific element | /firstlevel/one | /json/firstlevel/one |
i-th child | /firstlevel/two/item[2] | /json/firstlevel/two/[2] |
This list is not exhaustive, but it provides a general idea of the possibilities.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
The current element is specified in the XPath configuration setting. This configuration setting is read-only.
OAuth Config Settings
Bearer (default) | When the access token returned by the server is a Bearer type, the authorization string returned by Authorize will be in the format "Bearer access_token". This can be supplied as the value of the HTTP Authorization header. |
For example, when using the Authorization Code grant type, the RefreshToken field should be set to a valid refresh token. When using the Client Credential grant type however, the class does not need any additional properties set as it can already get a new access token without user interaction.
If set to true (default) the redirect_uri will be sent in all cases. If set to false the redirect_uri will only be sent if it has a value.
To parse the payload for specific claims, see OAuthJWTXPath.
The current element is specified in the OAuthJWTXPath configuration setting. This configuration setting is read-only.
The current element is specified in the OAuthJWTXPath configuration setting. This configuration setting is read-only.
The current element is specified in the OAuthJWTXPath configuration setting. This configuration setting is read-only.
The current element is specified in the OAuthJWTXPath configuration setting. This configuration setting is read-only.
The current element is specified in the OAuthJWTXPath configuration setting. This configuration setting is read-only.
XPath syntax is available for the payload of JWT based access tokens if available. An XPath is a series of one or more element accessors separated by the / character, for example: /A/B/C/D.
The following are possible values for an element accessor, which operates relative to the current location specified by the XPath accessors which proceed it in the overall XPath string:
Accessor | Description |
name | The first element with a particular name. Can be *. |
[i] | The i-th element. |
name[i] | The i-th element with a particular name. |
[last()] | The last element. |
[last()-i] | The element i before the last element. |
Description | JSON XPath |
Document root | /json |
Specific element | /json/element_one |
Username Claim (Microsoft Specific) | /json/preferred_username |
Registered Application Name Claim (Microsoft Specific) | /json/app_displayname |
This is not an exhaustive list by any means, but should provide a general idea of the possibilities. To get the text of the specified element, see OAuthJWTXText.
The current element is specified in the OAuthJWTXPath configuration setting. This configuration setting is read-only.
The current element is specified in the OAuthJWTXPath configuration setting. This configuration setting is read-only.
component.Config("OAuthParamCount=2");
component.Config("OAuthParamName[0]=myvar");
component.Config("OAuthParamValue[0]=myvalue");
component.Config("OAuthParamName[1]=testname");
component.Config("OAuthParamValue[1]=testvalue");
Additionally, this will also be updated to hold the parameters returned in the response.
for (int i = 0; i < int.Parse(component.Config("OAuthParamCount")); i++)
{
string name = component.Config("OAuthParamName[" + i + "]");
string value = component.Config("OAuthParamValue[" + i + "]");
}
- 1 (Plain)
- 2 (S256/SHA256 - default)
.NET
Gmail gmail = new Gmail();
gmail.Config("OAuthTransferredRequest=on");
gmail.Authorize();
Console.WriteLine(gmail.Config("OAuthTransferredRequest"));
C++
Gmail gmail;
gmail.Config("OAuthTransferredRequest=on");
gmail.Authorize();
printf("%s\r\n", gmail.Config("OAuthTransferredRequest"));
This setting can also be set to activate or deactivate the web server. Under normal circumstances, this would not be required as the class will automatically start and stop the web server when Authorize is called. In certain cases, it is required to start the webserver before calling Authorize. For example, if the ReturnURL needs to be set to a relay server, then you will need to start the web server manually. Another example would be when the OAuthReUseWebServer is set to true, the server will not be automatically stopped, and this configuration setting must be set to "false" to stop the embedded web server.
The OAuthWebServerCertStoreType field specifies the type of the certificate store specified by OAuthWebServerCertStore. If the store is password protected, specify the password in OAuthWebServerCertStorePassword.
OAuthWebServerCertStore is used in conjunction with the OAuthWebServerCertSubject field in order to specify the certificate to be used during SSL.
Designations of certificate stores are platform dependent.
The following designations are the most common User and Machine certificate stores in Windows:
MY | A certificate store holding personal certificates with their associated private keys. |
CA | Certifying authority certificates. |
ROOT | Root certificates. |
When the certificate store type is cstPFXFile, this property must be set to the name of the file. When the type is cstPFXBlob, the property must be set to the binary contents of a PFX file (i.e., PKCS#12 certificate store).
Note: This is required when OAuthWebServerSSLEnabled is set to true.
Note: This is only applicable when OAuthWebServerSSLEnabled is set to true.
0 | User - This is the default for Windows. This specifies that the certificate store is a certificate store owned by the current user. Note: This store type is not available in Java. |
1 | Machine - For Windows, this specifies that the certificate store is a machine store. Note: This store type is not available in Java. |
2 | PFXFile - The certificate store is the name of a PFX (PKCS12) file containing certificates. |
3 | PFXBlob - The certificate store is a string (binary or Base64-encoded) representing a certificate store in PFX (PKCS12) format. |
4 | JKSFile - The certificate store is the name of a Java Key Store (JKS) file containing certificates. Note: This store type is available only in Java. |
5 | JKSBlob - The certificate store is a string (binary or Base64-encoded) representing a certificate store in Java Key Store (JKS) format. Note: This store type is available only in Java. |
6 | PEMKeyFile - The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate. |
7 | PEMKeyBlob - The certificate store is a string (binary or Base64-encoded) that contains a private key and an optional certificate. |
14 | PPKFile - The certificate store is the name of a file that contains a PPK (PuTTY Private Key). |
15 | PPKBlob - The certificate store is a string (binary) that contains a PPK (PuTTY Private Key). |
16 | XMLFile - The certificate store is the name of a file that contains a certificate in XML format. |
17 | XMLBlob - The certificate store is a string that contains a certificate in XML format. |
The special value "*" picks a random certificate in the certificate store.
The certificate subject is a comma-separated list of distinguished name fields and values. For instance, "CN=www.server.com, OU=test, C=US, E=support@nsoftware.com". Common fields and their meanings are as follows:
Field | Meaning |
CN | Common Name. This is commonly a hostname like www.server.com. |
O | Organization |
OU | Organizational Unit |
L | Locality |
S | State |
C | Country |
E | Email Address |
If a field value contains a comma, it must be quoted.
Note: This is required when OAuthWebServerSSLEnabled is set to true.
The default value is localhost.
HTTP Config Settings
When True, the class adds an Accept-Encoding header to the outgoing request. The value for this header can be controlled by the AcceptEncoding configuration setting. The default value for this header is "gzip, deflate".
The default value is True.
If set to True (default), the class will automatically use HTTP/1.1 if the server does not support HTTP/2. If set to False, the class fails with an error if the server does not support HTTP/2.
The default value is True.
This property is provided so that the HTTP class can be extended with other security schemes in addition to the authorization schemes already implemented by the class.
The AuthScheme property defines the authentication scheme used. In the case of HTTP Basic Authentication (default), every time User and Password are set, they are Base64 encoded, and the result is put in the Authorization property in the form "Basic [encoded-user-password]".
The default value is False.
If this property is set to 2 (Same Scheme), the new URL is retrieved automatically only if the URL Scheme is the same; otherwise, the class fails with an error.
Note: Following the HTTP specification, unless this option is set to 1 (Always), automatic redirects will be performed only for GET or HEAD requests. Other methods potentially could change the conditions of the initial request and create security vulnerabilities.
Furthermore, if either the new URL server or port are different from the existing one, User and Password are also reset to empty, unless this property is set to 1 (Always), in which case the same credentials are used to connect to the new server.
A Redirect event is fired for every URL the product is redirected to. In the case of automatic redirections, the Redirect event is a good place to set properties related to the new connection (e.g., new authentication parameters).
The default value is 0 (Never). In this case, redirects are never followed, and the class fails with an error instead.
Following are the valid options:
- 0 - Never
- 1 - Always
- 2 - Same Scheme
- "1.0"
- "1.1" (default)
- "2.0"
- "3.0"
When using HTTP/2 ("2.0"), additional restrictions apply. Please see the following notes for details.
HTTP/2 Notes
When using HTTP/2, a secure Secure Sockets Layer/Transport Layer Security (TLS/SSL) connection is required. Attempting to use a plaintext URL with HTTP/2 will result in an error.
If the server does not support HTTP/2, the class will automatically use HTTP/1.1 instead. This is done to provide compatibility without the need for any additional settings. To see which version was used, check NegotiatedHTTPVersion after calling a method. The AllowHTTPFallback setting controls whether this behavior is allowed (default) or disallowed.
HTTP/3 Notes
HTTP/3 is supported only in .NET and Java.
When using HTTP/3, a secure (TLS/SSL) connection is required. Attempting to use a plaintext URL with HTTP/3 will result in an error.
The format of the date value for IfModifiedSince is detailed in the HTTP specs. For example:
Sat, 29 Oct 2017 19:43:31 GMT.
The default value for KeepAlive is false.
0 (None) | No events are logged. |
1 (Info - default) | Informational events are logged. |
2 (Verbose) | Detailed data are logged. |
3 (Debug) | Debug data are logged. |
The value 1 (Info) logs basic information, including the URL, HTTP version, and status details.
The value 2 (Verbose) logs additional information about the request and response.
The value 3 (Debug) logs the headers and body for both the request and response, as well as additional debug information (if any).
The headers must follow the format "header: value" as described in the HTTP specifications. Header lines should be separated by CRLF ("\r\n") .
Use this configuration setting with caution. If this configuration setting contains invalid headers, HTTP requests may fail.
This configuration setting is useful for extending the functionality of the class beyond what is provided.
.NET
Http http = new Http();
http.Config("TransferredRequest=on");
http.PostData = "body";
http.Post("http://someserver.com");
Console.WriteLine(http.Config("TransferredRequest"));
C++
HTTP http;
http.Config("TransferredRequest=on");
http.SetPostData("body", 5);
http.Post("http://someserver.com");
printf("%s\r\n", http.Config("TransferredRequest"));
Note: Some servers (such as the ASP.NET Development Server) may not support chunked encoding.
The default value is False and the hostname will always be used exactly as specified. Note: The CodePage setting must be set to a value capable of interpreting the specified host name. For instance, to specify UTF-8, set CodePage to 65001. In the C++ Edition for Windows, the *W version of the class must be used. For instance, DNSW or HTTPW.
Note: This setting is applicable only to Mac/iOS editions.
When True (default), the class will check for the existence of a Proxy auto-config URL, and if found, will determine the appropriate proxy to use.
Override the default with the name and version of your software.
TCPClient Config Settings
If the FirewallHost setting is set to a Domain Name, a DNS request is initiated. Upon successful termination of the request, the FirewallHost setting is set to the corresponding address. If the search is not successful, an error is returned.
Note: This setting is provided for use by classs that do not directly expose Firewall properties.
Note: This setting is provided for use by classs that do not directly expose Firewall properties.
Note: This configuration setting is provided for use by classs that do not directly expose Firewall properties.
0 | No firewall (default setting). |
1 | Connect through a tunneling proxy. FirewallPort is set to 80. |
2 | Connect through a SOCKS4 Proxy. FirewallPort is set to 1080. |
3 | Connect through a SOCKS5 Proxy. FirewallPort is set to 1080. |
10 | Connect through a SOCKS4A Proxy. FirewallPort is set to 1080. |
Note: This setting is provided for use by classs that do not directly expose Firewall properties.
Note: This setting is provided for use by classs that do not directly expose Firewall properties.
Note: This value is not applicable in macOS.
Note: This configuration setting is only available in the Unix platform. It is not supported in masOS or FreeBSD.
In the case that Linger is True (default), two scenarios determine how long the connection will linger. In the first, if LingerTime is 0 (default), the system will attempt to send pending data for a connection until the default IP timeout expires.
In the second scenario, if LingerTime is a positive value, the system will attempt to send pending data until the specified LingerTime is reached. If this attempt fails, then the system will reset the connection.
The default behavior (which is also the default mode for stream sockets) might result in a long delay in closing the connection. Although the class returns control immediately, the system could hold system resources until all pending data are sent (even after your application closes).
Setting this property to False forces an immediate disconnection. If you know that the other side has received all the data you sent (e.g., by a client acknowledgment), setting this property to False might be the appropriate course of action.
In multihomed hosts (machines with more than one IP interface), setting LocalHost to the value of an interface will make the class initiate connections (or accept in the case of server classs) only through that interface.
If the class is connected, the LocalHost setting shows the IP address of the interface through which the connection is made in internet dotted format (aaa.bbb.ccc.ddd). In most cases, this is the address of the local host, except for multihomed hosts (machines with more than one IP interface).
Setting this to 0 (default) enables the system to choose a port at random. The chosen port will be shown by LocalPort after the connection is established.
LocalPort cannot be changed once a connection is made. Any attempt to set this when a connection is active will generate an error.
This configuration setting is useful when trying to connect to services that require a trusted port on the client side. An example is the remote shell (rsh) service in UNIX systems.
If an EOL string is found in the input stream before MaxLineLength bytes are received, the DataIn event is fired with the EOL parameter set to True, and the buffer is reset.
If no EOL is found, and MaxLineLength bytes are accumulated in the buffer, the DataIn event is fired with the EOL parameter set to False, and the buffer is reset.
The minimum value for MaxLineLength is 256 bytes. The default value is 2048 bytes.
www.google.com;www.nsoftware.com
Note: This value is not applicable in Java.
By default, this configuration setting is set to False.
0 | IPv4 only |
1 | IPv6 only |
2 | IPv6 with IPv4 fallback |
SSL Config Settings
When enabled, SSL packet logs are output using the SSLStatus event, which will fire each time an SSL packet is sent or received.
Enabling this configuration setting has no effect if SSLProvider is set to Platform.
The path set by this property should point to a directory containing CA certificates in PEM format. The files each contain one CA certificate. The files are looked up by the CA subject name hash value, which must hence be available. If more than one CA certificate with the same name hash value exist, the extension must be different (e.g., 9d66eef0.0, 9d66eef0.1). OpenSSL recommends the use of the c_rehash utility to create the necessary links. Please refer to the OpenSSL man page SSL_CTX_load_verify_locations(3) for details.
The file set by this property should contain a list of CA certificates in PEM format. The file can contain several CA certificates identified by the following sequences:
-----BEGIN CERTIFICATE-----
... (CA certificate in base64 encoding) ...
-----END CERTIFICATE-----
Before, between, and after the certificate text is allowed, which can be used, for example, for descriptions of the certificates. Refer to the OpenSSL man page SSL_CTX_load_verify_locations(3) for details.
The format of this string is described in the OpenSSL man page ciphers(1) section "CIPHER LIST FORMAT". Please refer to it for details. The default string "DEFAULT" is determined at compile time and is normally equivalent to "ALL:!ADH:RC4+RSA:+SSLv2:@STRENGTH".
By default, OpenSSL uses the device file "/dev/urandom" to seed the PRNG, and setting OpenSSLPrngSeedData is not required. If set, the string specified is used to seed the PRNG.
If set to True, the class will reuse the context if and only if the following criteria are met:
- The target host name is the same.
- The system cache entry has not expired (default timeout is 10 hours).
- The application process that calls the function is the same.
- The logon session is the same.
- The instance of the class is the same.
The value is formatted as a list of paths separated by semicolons. The class will check for the existence of each file in the order specified. When a file is found, the CA certificates within the file will be loaded and used to determine the validity of server or client certificates.
The default value is as follows:
/etc/ssl/ca-bundle.pem;/etc/pki/tls/certs/ca-bundle.crt;/etc/ssl/certs/ca-certificates.crt;/etc/pki/tls/cacert.pem
-----BEGIN CERTIFICATE----- MIIEKzCCAxOgAwIBAgIRANTET4LIkxdH6P+CFIiHvTowDQYJKoZIhvcNAQELBQAw ... Intermediate Cert ... eWHV5OW1K53o/atv59sOiW5K3crjFhsBOd5Q+cJJnU+SWinPKtANXMht+EDvYY2w F0I1XhM+pKj7FjDr+XNj -----END CERTIFICATE----- \r \n -----BEGIN CERTIFICATE----- MIIEFjCCAv6gAwIBAgIQetu1SMxpnENAnnOz1P+PtTANBgkqhkiG9w0BAQUFADBp ... Root Cert ... d8q23djXZbVYiIfE9ebr4g3152BlVCHZ2GyPdjhIuLeH21VbT/dyEHHA -----END CERTIFICATE-----
Note: This configuration setting contains the minimum cipher strength requested from the security library. The actual cipher strength used for the connection is shown by the SSLStatus event.
Use this configuration setting with caution. Requesting a lower cipher strength than necessary could potentially cause serious security vulnerabilities in your application.
When the provider is OpenSSL, SSLCipherStrength is currently not supported. This functionality is instead made available through the OpenSSLCipherList configuration setting.
The value of this configuration setting is a newline-separated (CR/LF) list of certificates. For instance:
-----BEGIN CERTIFICATE----- MIIEKzCCAxOgAwIBAgIRANTET4LIkxdH6P+CFIiHvTowDQYJKoZIhvcNAQELBQAw ... Intermediate Cert ... eWHV5OW1K53o/atv59sOiW5K3crjFhsBOd5Q+cJJnU+SWinPKtANXMht+EDvYY2w F0I1XhM+pKj7FjDr+XNj -----END CERTIFICATE----- \r \n -----BEGIN CERTIFICATE----- MIIEFjCCAv6gAwIBAgIQetu1SMxpnENAnnOz1P+PtTANBgkqhkiG9w0BAQUFADBp ... Root Cert ... d8q23djXZbVYiIfE9ebr4g3152BlVCHZ2GyPdjhIuLeH21VbT/dyEHHA -----END CERTIFICATE-----
By default, the enabled cipher suites will include all available ciphers ("*").
The special value "*" means that the class will pick all of the supported cipher suites. If SSLEnabledCipherSuites is set to any other value, only the specified cipher suites will be considered.
Multiple cipher suites are separated by semicolons.
Example values when SSLProvider is set to Platform include the following:
obj.config("SSLEnabledCipherSuites=*");
obj.config("SSLEnabledCipherSuites=CALG_AES_256");
obj.config("SSLEnabledCipherSuites=CALG_AES_256;CALG_3DES");
Possible values when SSLProvider is set to Platform include the following:
- CALG_3DES
- CALG_3DES_112
- CALG_AES
- CALG_AES_128
- CALG_AES_192
- CALG_AES_256
- CALG_AGREEDKEY_ANY
- CALG_CYLINK_MEK
- CALG_DES
- CALG_DESX
- CALG_DH_EPHEM
- CALG_DH_SF
- CALG_DSS_SIGN
- CALG_ECDH
- CALG_ECDH_EPHEM
- CALG_ECDSA
- CALG_ECMQV
- CALG_HASH_REPLACE_OWF
- CALG_HUGHES_MD5
- CALG_HMAC
- CALG_KEA_KEYX
- CALG_MAC
- CALG_MD2
- CALG_MD4
- CALG_MD5
- CALG_NO_SIGN
- CALG_OID_INFO_CNG_ONLY
- CALG_OID_INFO_PARAMETERS
- CALG_PCT1_MASTER
- CALG_RC2
- CALG_RC4
- CALG_RC5
- CALG_RSA_KEYX
- CALG_RSA_SIGN
- CALG_SCHANNEL_ENC_KEY
- CALG_SCHANNEL_MAC_KEY
- CALG_SCHANNEL_MASTER_HASH
- CALG_SEAL
- CALG_SHA
- CALG_SHA1
- CALG_SHA_256
- CALG_SHA_384
- CALG_SHA_512
- CALG_SKIPJACK
- CALG_SSL2_MASTER
- CALG_SSL3_MASTER
- CALG_SSL3_SHAMD5
- CALG_TEK
- CALG_TLS1_MASTER
- CALG_TLS1PRF
obj.config("SSLEnabledCipherSuites=*");
obj.config("SSLEnabledCipherSuites=TLS_DHE_DSS_WITH_AES_128_CBC_SHA");
obj.config("SSLEnabledCipherSuites=TLS_DHE_DSS_WITH_AES_128_CBC_SHA;TLS_ECDH_RSA_WITH_AES_128_CBC_SHA");
Possible values when SSLProvider is set to Internal include the following:
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
- TLS_RSA_WITH_AES_256_GCM_SHA384
- TLS_RSA_WITH_AES_128_GCM_SHA256
- TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_DHE_DSS_WITH_AES_256_GCM_SHA384
- TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
- TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_DHE_DSS_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
- TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
- TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
- TLS_DHE_DSS_WITH_AES_256_CBC_SHA256
- TLS_RSA_WITH_AES_256_CBC_SHA256
- TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
- TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
- TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
- TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
- TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
- TLS_RSA_WITH_AES_128_CBC_SHA256
- TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
- TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
- TLS_DHE_DSS_WITH_AES_128_CBC_SHA256
- TLS_RSA_WITH_AES_256_CBC_SHA
- TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
- TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
- TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
- TLS_DHE_RSA_WITH_AES_256_CBC_SHA
- TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
- TLS_DHE_DSS_WITH_AES_256_CBC_SHA
- TLS_RSA_WITH_AES_128_CBC_SHA
- TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
- TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
- TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
- TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
- TLS_DHE_RSA_WITH_AES_128_CBC_SHA
- TLS_DHE_DSS_WITH_AES_128_CBC_SHA
- TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
- TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
- TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
- TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
- TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
- TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA
- TLS_RSA_WITH_3DES_EDE_CBC_SHA
- TLS_RSA_WITH_DES_CBC_SHA
- TLS_DHE_RSA_WITH_DES_CBC_SHA
- TLS_DHE_DSS_WITH_DES_CBC_SHA
- TLS_RSA_WITH_RC4_128_MD5
- TLS_RSA_WITH_RC4_128_SHA
When TLS 1.3 is negotiated (see SSLEnabledProtocols), only the following cipher suites are supported:
- TLS_AES_256_GCM_SHA384
- TLS_CHACHA20_POLY1305_SHA256
- TLS_AES_128_GCM_SHA256
SSLEnabledCipherSuites is used together with SSLCipherStrength.
Not all supported protocols are enabled by default. The default value is 4032 for client components, and 3072 for server components. To specify a combination of enabled protocol versions set this config to the binary OR of one or more of the following values:
TLS1.3 | 12288 (Hex 3000) |
TLS1.2 | 3072 (Hex C00) (Default - Client and Server) |
TLS1.1 | 768 (Hex 300) (Default - Client) |
TLS1 | 192 (Hex C0) (Default - Client) |
SSL3 | 48 (Hex 30) |
SSL2 | 12 (Hex 0C) |
Note that only TLS 1.2 is enabled for server components that accept incoming connections. This adheres to industry standards to ensure a secure connection. Client components enable TLS 1.0, TLS 1.1, and TLS 1.2 by default and will negotiate the highest mutually supported version when connecting to a server, which should be TLS 1.2 in most cases.
SSLEnabledProtocols: Transport Layer Security (TLS) 1.3 Notes:
By default when TLS 1.3 is enabled, the class will use the internal TLS implementation when the SSLProvider is set to Automatic for all editions.
In editions that are designed to run on Windows, SSLProvider can be set to Platform to use the platform implementation instead of the internal implementation. When configured in this manner, please note that the platform provider is supported only on Windows 11/Windows Server 2022 and up. The default internal provider is available on all platforms and is not restricted to any specific OS version.
If set to 1 (Platform provider), please be aware of the following notes:
- The platform provider is available only on Windows 11/Windows Server 2022 and up.
- SSLEnabledCipherSuites and other similar SSL configuration settings are not supported.
- If SSLEnabledProtocols includes both TLS 1.3 and TLS 1.2, these restrictions are still applicable even if TLS 1.2 is negotiated. Enabling TLS 1.3 with the platform provider changes the implementation used for all TLS versions.
SSLEnabledProtocols: SSL2 and SSL3 Notes:
SSL 2.0 and 3.0 are not supported by the class when the SSLProvider is set to internal. To use SSL 2.0 or SSL 3.0, the platform security API must have the protocols enabled and SSLProvider needs to be set to platform.
This configuration setting is applicable only when SSLProvider is set to Internal.
If set to True, all certificates returned by the server will be present in the Encoded parameter of the SSLServerAuthentication event. This includes the leaf certificate, any intermediate certificate, and the root certificate.
When set, the class will save the session secrets in the same format as the SSLKEYLOGFILE environment variable functionality used by most major browsers and tools, such as Chrome, Firefox, and cURL. This file can then be used in tools such as Wireshark to decrypt TLS traffic for debugging purposes. When writing to this file, the class will only append, it will not overwrite previous values.
Note: This configuration setting is applicable only when SSLProvider is set to Internal.
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedCipher[connId]");
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedCipherStrength[connId]");
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedCipherSuite[connId]");
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedKeyExchange[connId]");
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedKeyExchangeStrength[connId]");
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedVersion[connId]");
0x00000001 | Ignore time validity status of certificate. |
0x00000002 | Ignore time validity status of CTL. |
0x00000004 | Ignore non-nested certificate times. |
0x00000010 | Allow unknown certificate authority. |
0x00000020 | Ignore wrong certificate usage. |
0x00000100 | Ignore unknown certificate revocation status. |
0x00000200 | Ignore unknown CTL signer revocation status. |
0x00000400 | Ignore unknown certificate authority revocation status. |
0x00000800 | Ignore unknown root revocation status. |
0x00008000 | Allow test root certificate. |
0x00004000 | Trust test root certificate. |
0x80000000 | Ignore non-matching CN (certificate CN non-matching server name). |
This functionality is currently not available when the provider is OpenSSL.
The value of this configuration setting is a newline-separated (CR/LF) list of certificates. For instance:
-----BEGIN CERTIFICATE----- MIIEKzCCAxOgAwIBAgIRANTET4LIkxdH6P+CFIiHvTowDQYJKoZIhvcNAQELBQAw ... Intermediate Cert... eWHV5OW1K53o/atv59sOiW5K3crjFhsBOd5Q+cJJnU+SWinPKtANXMht+EDvYY2w F0I1XhM+pKj7FjDr+XNj -----END CERTIFICATE----- \r \n -----BEGIN CERTIFICATE----- MIIEFjCCAv6gAwIBAgIQetu1SMxpnENAnnOz1P+PtTANBgkqhkiG9w0BAQUFADBp ... Root Cert... d8q23djXZbVYiIfE9ebr4g3152BlVCHZ2GyPdjhIuLeH21VbT/dyEHHA -----END CERTIFICATE-----
When specified the class will verify that the server certificate signature algorithm is among the values specified in this configuration setting. If the server certificate signature algorithm is unsupported, the class fails with an error.
The format of this value is a comma-separated list of hash-signature combinations. For instance:
component.SSLProvider = TCPClientSSLProviders.sslpInternal;
component.Config("SSLEnabledProtocols=3072"); //TLS 1.2
component.Config("TLS12SignatureAlgorithms=sha256-rsa,sha256-dsa,sha1-rsa,sha1-dsa");
The default value for this configuration setting is sha512-ecdsa,sha512-rsa,sha512-dsa,sha384-ecdsa,sha384-rsa,sha384-dsa,sha256-ecdsa,sha256-rsa,sha256-dsa,sha224-ecdsa,sha224-rsa,sha224-dsa,sha1-ecdsa,sha1-rsa,sha1-dsa.
To not restrict the server's certificate signature algorithm, specify an empty string as the value for this configuration setting, which will cause the signature_algorithms TLS 1.2 extension to not be sent.
The default value is ecdhe_secp256r1,ecdhe_secp384r1,ecdhe_secp521r1.
When using TLS 1.2 and SSLProvider is set to Internal, the values refer to the supported groups for ECC. The following values are supported:
- "ecdhe_secp256r1" (default)
- "ecdhe_secp384r1" (default)
- "ecdhe_secp521r1" (default)
The default value is set to balance common supported groups and the computational resources required to generate key shares. As a result, only some groups are included by default in this configuration setting.
Note: All supported groups can always be used during the handshake even if not listed here, but if a group is used that is not present in this list, it will incur an additional roundtrip and time to generate the key share for that group.
In most cases, this configuration setting does not need to be modified. This should be modified only if there is a specific reason to do so.
The default value is ecdhe_x25519,ecdhe_secp256r1,ecdhe_secp384r1,ffdhe_2048,ffdhe_3072
The values are ordered from most preferred to least preferred. The following values are supported:
- "ecdhe_x25519" (default)
- "ecdhe_x448"
- "ecdhe_secp256r1" (default)
- "ecdhe_secp384r1" (default)
- "ecdhe_secp521r1"
- "ffdhe_2048" (default)
- "ffdhe_3072" (default)
- "ffdhe_4096"
- "ffdhe_6144"
- "ffdhe_8192"
- "ed25519" (default)
- "ed448" (default)
- "ecdsa_secp256r1_sha256" (default)
- "ecdsa_secp384r1_sha384" (default)
- "ecdsa_secp521r1_sha512" (default)
- "rsa_pkcs1_sha256" (default)
- "rsa_pkcs1_sha384" (default)
- "rsa_pkcs1_sha512" (default)
- "rsa_pss_sha256" (default)
- "rsa_pss_sha384" (default)
- "rsa_pss_sha512" (default)
The default value is ecdhe_x25519,ecdhe_x448,ecdhe_secp256r1,ecdhe_secp384r1,ecdhe_secp521r1,ffdhe_2048,ffdhe_3072,ffdhe_4096,ffdhe_6144,ffdhe_8192
The values are ordered from most preferred to least preferred. The following values are supported:
- "ecdhe_x25519" (default)
- "ecdhe_x448" (default)
- "ecdhe_secp256r1" (default)
- "ecdhe_secp384r1" (default)
- "ecdhe_secp521r1" (default)
- "ffdhe_2048" (default)
- "ffdhe_3072" (default)
- "ffdhe_4096" (default)
- "ffdhe_6144" (default)
- "ffdhe_8192" (default)
Socket Config Settings
Note: This option is not valid for User Datagram Protocol (UDP) ports.
Some TCP/IP implementations do not support variable buffer sizes. If that is the case, when the class is activated the InBufferSize reverts to its defined size. The same happens if you attempt to make it too large or too small.
Some TCP/IP implementations do not support variable buffer sizes. If that is the case, when the class is activated the OutBufferSize reverts to its defined size. The same happens if you attempt to make it too large or too small.
Base Config Settings
The following is a list of valid code page identifiers:
Identifier | Name |
037 | IBM EBCDIC - U.S./Canada |
437 | OEM - United States |
500 | IBM EBCDIC - International |
708 | Arabic - ASMO 708 |
709 | Arabic - ASMO 449+, BCON V4 |
710 | Arabic - Transparent Arabic |
720 | Arabic - Transparent ASMO |
737 | OEM - Greek (formerly 437G) |
775 | OEM - Baltic |
850 | OEM - Multilingual Latin I |
852 | OEM - Latin II |
855 | OEM - Cyrillic (primarily Russian) |
857 | OEM - Turkish |
858 | OEM - Multilingual Latin I + Euro symbol |
860 | OEM - Portuguese |
861 | OEM - Icelandic |
862 | OEM - Hebrew |
863 | OEM - Canadian-French |
864 | OEM - Arabic |
865 | OEM - Nordic |
866 | OEM - Russian |
869 | OEM - Modern Greek |
870 | IBM EBCDIC - Multilingual/ROECE (Latin-2) |
874 | ANSI/OEM - Thai (same as 28605, ISO 8859-15) |
875 | IBM EBCDIC - Modern Greek |
932 | ANSI/OEM - Japanese, Shift-JIS |
936 | ANSI/OEM - Simplified Chinese (PRC, Singapore) |
949 | ANSI/OEM - Korean (Unified Hangul Code) |
950 | ANSI/OEM - Traditional Chinese (Taiwan; Hong Kong SAR, PRC) |
1026 | IBM EBCDIC - Turkish (Latin-5) |
1047 | IBM EBCDIC - Latin 1/Open System |
1140 | IBM EBCDIC - U.S./Canada (037 + Euro symbol) |
1141 | IBM EBCDIC - Germany (20273 + Euro symbol) |
1142 | IBM EBCDIC - Denmark/Norway (20277 + Euro symbol) |
1143 | IBM EBCDIC - Finland/Sweden (20278 + Euro symbol) |
1144 | IBM EBCDIC - Italy (20280 + Euro symbol) |
1145 | IBM EBCDIC - Latin America/Spain (20284 + Euro symbol) |
1146 | IBM EBCDIC - United Kingdom (20285 + Euro symbol) |
1147 | IBM EBCDIC - France (20297 + Euro symbol) |
1148 | IBM EBCDIC - International (500 + Euro symbol) |
1149 | IBM EBCDIC - Icelandic (20871 + Euro symbol) |
1200 | Unicode UCS-2 Little-Endian (BMP of ISO 10646) |
1201 | Unicode UCS-2 Big-Endian |
1250 | ANSI - Central European |
1251 | ANSI - Cyrillic |
1252 | ANSI - Latin I |
1253 | ANSI - Greek |
1254 | ANSI - Turkish |
1255 | ANSI - Hebrew |
1256 | ANSI - Arabic |
1257 | ANSI - Baltic |
1258 | ANSI/OEM - Vietnamese |
1361 | Korean (Johab) |
10000 | MAC - Roman |
10001 | MAC - Japanese |
10002 | MAC - Traditional Chinese (Big5) |
10003 | MAC - Korean |
10004 | MAC - Arabic |
10005 | MAC - Hebrew |
10006 | MAC - Greek I |
10007 | MAC - Cyrillic |
10008 | MAC - Simplified Chinese (GB 2312) |
10010 | MAC - Romania |
10017 | MAC - Ukraine |
10021 | MAC - Thai |
10029 | MAC - Latin II |
10079 | MAC - Icelandic |
10081 | MAC - Turkish |
10082 | MAC - Croatia |
12000 | Unicode UCS-4 Little-Endian |
12001 | Unicode UCS-4 Big-Endian |
20000 | CNS - Taiwan |
20001 | TCA - Taiwan |
20002 | Eten - Taiwan |
20003 | IBM5550 - Taiwan |
20004 | TeleText - Taiwan |
20005 | Wang - Taiwan |
20105 | IA5 IRV International Alphabet No. 5 (7-bit) |
20106 | IA5 German (7-bit) |
20107 | IA5 Swedish (7-bit) |
20108 | IA5 Norwegian (7-bit) |
20127 | US-ASCII (7-bit) |
20261 | T.61 |
20269 | ISO 6937 Non-Spacing Accent |
20273 | IBM EBCDIC - Germany |
20277 | IBM EBCDIC - Denmark/Norway |
20278 | IBM EBCDIC - Finland/Sweden |
20280 | IBM EBCDIC - Italy |
20284 | IBM EBCDIC - Latin America/Spain |
20285 | IBM EBCDIC - United Kingdom |
20290 | IBM EBCDIC - Japanese Katakana Extended |
20297 | IBM EBCDIC - France |
20420 | IBM EBCDIC - Arabic |
20423 | IBM EBCDIC - Greek |
20424 | IBM EBCDIC - Hebrew |
20833 | IBM EBCDIC - Korean Extended |
20838 | IBM EBCDIC - Thai |
20866 | Russian - KOI8-R |
20871 | IBM EBCDIC - Icelandic |
20880 | IBM EBCDIC - Cyrillic (Russian) |
20905 | IBM EBCDIC - Turkish |
20924 | IBM EBCDIC - Latin-1/Open System (1047 + Euro symbol) |
20932 | JIS X 0208-1990 & 0121-1990 |
20936 | Simplified Chinese (GB2312) |
21025 | IBM EBCDIC - Cyrillic (Serbian, Bulgarian) |
21027 | Extended Alpha Lowercase |
21866 | Ukrainian (KOI8-U) |
28591 | ISO 8859-1 Latin I |
28592 | ISO 8859-2 Central Europe |
28593 | ISO 8859-3 Latin 3 |
28594 | ISO 8859-4 Baltic |
28595 | ISO 8859-5 Cyrillic |
28596 | ISO 8859-6 Arabic |
28597 | ISO 8859-7 Greek |
28598 | ISO 8859-8 Hebrew |
28599 | ISO 8859-9 Latin 5 |
28605 | ISO 8859-15 Latin 9 |
29001 | Europa 3 |
38598 | ISO 8859-8 Hebrew |
50220 | ISO 2022 Japanese with no halfwidth Katakana |
50221 | ISO 2022 Japanese with halfwidth Katakana |
50222 | ISO 2022 Japanese JIS X 0201-1989 |
50225 | ISO 2022 Korean |
50227 | ISO 2022 Simplified Chinese |
50229 | ISO 2022 Traditional Chinese |
50930 | Japanese (Katakana) Extended |
50931 | US/Canada and Japanese |
50933 | Korean Extended and Korean |
50935 | Simplified Chinese Extended and Simplified Chinese |
50936 | Simplified Chinese |
50937 | US/Canada and Traditional Chinese |
50939 | Japanese (Latin) Extended and Japanese |
51932 | EUC - Japanese |
51936 | EUC - Simplified Chinese |
51949 | EUC - Korean |
51950 | EUC - Traditional Chinese |
52936 | HZ-GB2312 Simplified Chinese |
54936 | Windows XP: GB18030 Simplified Chinese (4 Byte) |
57002 | ISCII Devanagari |
57003 | ISCII Bengali |
57004 | ISCII Tamil |
57005 | ISCII Telugu |
57006 | ISCII Assamese |
57007 | ISCII Oriya |
57008 | ISCII Kannada |
57009 | ISCII Malayalam |
57010 | ISCII Gujarati |
57011 | ISCII Punjabi |
65000 | Unicode UTF-7 |
65001 | Unicode UTF-8 |
Identifier | Name |
1 | ASCII |
2 | NEXTSTEP |
3 | JapaneseEUC |
4 | UTF8 |
5 | ISOLatin1 |
6 | Symbol |
7 | NonLossyASCII |
8 | ShiftJIS |
9 | ISOLatin2 |
10 | Unicode |
11 | WindowsCP1251 |
12 | WindowsCP1252 |
13 | WindowsCP1253 |
14 | WindowsCP1254 |
15 | WindowsCP1250 |
21 | ISO2022JP |
30 | MacOSRoman |
10 | UTF16String |
0x90000100 | UTF16BigEndian |
0x94000100 | UTF16LittleEndian |
0x8c000100 | UTF32String |
0x98000100 | UTF32BigEndian |
0x9c000100 | UTF32LittleEndian |
65536 | Proprietary |
- Product: The product the license is for.
- Product Key: The key the license was generated from.
- License Source: Where the license was found (e.g., RuntimeLicense, License File).
- License Type: The type of license installed (e.g., Royalty Free, Single Server).
- Last Valid Build: The last valid build number for which the license will work.
This setting only works on these classes: AS3Receiver, AS3Sender, Atom, Client(3DS), FTP, FTPServer, IMAP, OFTPClient, SSHClient, SCP, Server(3DS), Sexec, SFTP, SFTPServer, SSHServer, TCPClient, TCPServer.
FIPS mode can be enabled by setting the UseFIPSCompliantAPI configuration setting to true. This is a static setting that applies to all instances of all classes of the toolkit within the process. It is recommended to enable or disable this setting once before the component has been used to establish a connection. Enabling FIPS while an instance of the component is active and connected may result in unexpected behavior.
For more details, please see the FIPS 140-2 Compliance article.
Note: This setting is applicable only on Windows.
Note: Enabling FIPS compliance requires a special license; please contact sales@nsoftware.com for details.
Setting this configuration setting to true tells the class to use the internal implementation instead of using the system security libraries.
On Windows, this setting is set to false by default. On Linux/macOS, this setting is set to true by default.
To use the system security libraries for Linux, OpenSSL support must be enabled. For more information on how to enable OpenSSL, please refer to the OpenSSL Notes section.
Trappable Errors (Office365Tasks Class)
Error Handling (C++)
Call the GetLastErrorCode() method to obtain the last called method's result code; 0 indicates success, while a non-zero error code indicates that this method encountered an error during its execution. Known error codes are listed below. If an error occurs, the GetLastError() method can be called to retrieve the associated error message.
Office365Tasks Errors
1301 | Invalid Input Error. |