netCore/Microsoft.Exchange.Management.AdminApiProvider.xml
<?xml version="1.0"?>
<doc> <assembly> <name>Microsoft.Exchange.Management.AdminApiProvider</name> </assembly> <members> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1"> <summary> Represents the class which is used to process the cmdlet </summary> <typeparam name="T">Type of the cmdlet to be returned</typeparam> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.continuationToken"> <summary> Continuation token for next request </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.WarningsHeaderName"> <summary> Warnings header name. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.WarningDelimiter"> <summary> Warnings delimiter in warnings header value. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.context"> <summary> OData Client Context </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.authenticationResult"> <summary> Authentication Result </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.consoleLogger"> <summary> Console Logger instance </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.cancellationToken"> <summary> Cancellation Token </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.authProvider"> <summary> Auth Provider </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.cmdletQuery"> <summary> DataServiceQuery parameter </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.cmdletQueryList"> <summary> List of DataServiceQuery used to send batch request </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.isBulkRetrieval"> <summary> Do we want a bulk retrival from API </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.retryAfter"> <summary> Holds the retry-after value for the next request. This captures the retry-after value sent by the service in response to the previous request to be used while making the subsequent request. The service sends this in the response header in case of throttled scenarios. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.pendingResultSize"> <summary> Total number of records we want to fetch. By default, we'll virtually return all the values. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.nextRequestPageSize"> <summary> Page size for next request. Used to ensure we are not asking more results than requested by client. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.buildingRequestHandler"> <summary> Event handler to handle building new request. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.clientRequestId"> <summary> unique GUID to track an individual commandlet run </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.xAnchorIdentity"> <summary> XAnchorIdentity parameter </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.xAnchorIdentityPrefix"> <summary> XAnchorIdentity prefix </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.apiProviderContext"> <summary> api provider context associated with this provider. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.shouldRecreateAuthHeader"> <summary> Boolean to decide whether to recreate the token </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.serviceActivity"> <summary> Current active ServiceActivity instance </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.isFirstRetryRequest"> <summary> This Variable captures if the request is a Retry Request This can be used to change few parameters in case of Retry Request. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.claims"> <summary> String containing claims sent as a part of response for getting new token </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.#cctor"> <summary> Static constructor for the Api Provider </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.#ctor(Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext{`0})"> <summary> Private Constructor for the ApiProvider. This does the authentication, gets the service root url for Admin API and sets the context to query through Odata client library </summary> <param name="apiProviderContext">Query Context</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.InvokeQuery(Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext{`0},System.Func{Microsoft.Exchange.Management.AdminApiProvider.ApiProvider{`0},System.Boolean})"> <summary> Call to run a query using ApiProvider </summary> <param name="apiProviderContext">Query Context</param> <param name="responseHandler">Func to handle response from the query</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ValidateApiProviderContextForQuery(Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext{`0})"> <summary> Validate api provider context for executing queries. Throws ArgumentException if given context is not valid for queries. </summary> <param name="apiProviderContext">Api provider context to be validated.</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ValidateApiProviderContextForUpdate(Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext{`0})"> <summary> Validate given api provider context for updating objects. </summary> <param name="apiProviderContext">Api provider context to be validated.</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.CreateInstance(Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext{`0})"> <summary> Note: For Test Only. Use InvokeQuery for production code. Call to create new instance of ApiProvider. </summary> <param name="apiProviderContext">Query Context</param> <returns>Returns instance of an API provider constructed with the context param</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.RegisterHandlers"> <summary> Register Handlers </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.UnRegisterHandlers"> <summary> UnRegister Handlers </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.IsRetryable(System.Exception,System.Nullable{System.TimeSpan}@)"> <summary> Given and exception, determines whether it is retryable </summary> <param name="ex">Exception parameter</param> <param name="waitTime"> The wait time before the retry (if any) should be attempted. </param> <returns>Whether the exception is retryable</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.Query"> <summary> Performs the query over the REST API </summary> <returns>Collection of given type T</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.UpdateEntity(`0,System.Action{`0})"> <summary> Performs updating an entity. This method takes care of setting up property change trackers so that OData can send PATCH request with only modified fields instead of PUT with complete object. </summary> <param name="entity">Entity to update. Key must be updated in this entity before calling this method, otherwise it throws OData exception.</param> <param name="objectUpdateAction">Action which updates remaining fields.</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ProcessWithRetry``1(System.Func{``0})"> <summary> This function provides following functionality. 1) Retries the given lambda for known transient failures. 2) Handles throttling responses gracefully(waits before retrying). 3) Measures and collects metrics data for each request. </summary> <typeparam name="TRetType">Return type of the function.</typeparam> <param name="processExecutor">Process executor function.</param> <returns>Returns the value returned by process executor.</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.Dispose"> <summary> Dispose method, clean up any object refs if any. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.InvokeRestApiWithRetry(Microsoft.OData.Client.DataServiceQuery{`0})"> <summary> Invokes the Admin API with retry logic </summary> <typeparam name="T">Cmdlet type (like CasMailbox) as generated in the client side proxy class AdminApiOdataClientService by Odata client code generator tool</typeparam> <param name="cmdletQuery">DataServiceQuery objects which holds the context to query on</param> <returns>Response from Admin API through Odata client libraries</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.InvokeRestApiWithRetryBatch(Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext{`0})"> <summary> Invokes the Admin API with retry logic in case of a batch request If any of the individual request fails in a batch then these are retried individually. </summary> <param name="queryContext">queryContext param</param> <returns>Returns IEnumerable results of batched cmdlet</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ExecuteBatchMethod(Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext{`0},Microsoft.OData.Client.DataServiceRequest{`0}[])"> <summary> Executes async method for batch requests </summary> <param name="queryContext">queryContext param</param> <param name="batchRequests">batchRequests param</param> <returns>Returns IEnumerable results of batched cmdlet</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ExecuteMethod(Microsoft.OData.Client.DataServiceQuery{`0})"> <summary> Executes async method for cmdletQuery </summary> <param name="cmdletQuery">cmdletQuery param</param> <returns>Returns IEnumerable results of batched cmdlet</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.SaveChangesAsync(Microsoft.Exchange.Management.AdminApiProvider.Container)"> <summary> Executes async method for saving pending changes to the data service </summary> <param name="context">context param</param> <returns>Returns DataServiceResponse object that indicates the result of the batch operation</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ExecuteMethodForDataContext(Microsoft.Exchange.Management.AdminApiProvider.Container)"> <summary> Executes async method for cmdletQuery </summary> <param name="context">context param</param> <returns>Returns IEnumerable results of batched cmdlet</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.GetBatchResponse(System.Func{Microsoft.OData.Client.DataServiceResponse},Microsoft.Exchange.Management.AdminApiProvider.Container)"> <summary> Processes the ExecuteBatch(). This will do the same job as ProcessWithRetry. </summary> <param name="odataBatchRequestSender">odataBatchRequestSender param</param> <param name="context">context param</param> <returns>Returns batchResponse of the cmdlets</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ProcessWithRetry``1(System.Func{``0},Microsoft.Exchange.Management.AdminApiProvider.Container,System.String,Microsoft.OData.Client.DataServiceContext)"> <summary> Processes the queryExecutor with retry </summary> <typeparam name="TRetType">Return type from passed executor function.</typeparam> <param name="queryExecutor">QueryOperationResponse object from which we will get the response</param> <param name="context">Container param</param> <param name="requestURL">Request URL. Used for capturing in metrics.</param> <param name="dataServiceContext">Context for the request that is about to be sent</param> <returns>QueryOperationResponse object</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ExtractPathAndQueryInformation(System.String)"> <summary> This method removes the /adminapi/beta from the uri path </summary> <param name="uriPath">Url path</param> <returns>A string containing the base uri</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.OnBuildingRequest(System.Object,Microsoft.OData.Client.BuildingRequestEventArgs)"> <summary> Adds required authorization headers like the bearer token to the request header </summary> <param name="sender">Sender param</param> <param name="e">Event arguments</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.GetXAnchorMailbox(System.String)"> <summary> Returns the XAnchorMailbox to be used as the routing hint. </summary> <param name="tenantIdentity">Tenant Identity to use in XAnchorMailbox</param> <returns>XAnchorMailbox to be used in the request 1. Use the authenticated user's UPN in case xAnchorIdentity is Null/Empty. 2. Use xAnchorIdentity@TenantIdentity format in case xAnchorIdentity is a Guid. 3. Use xAnchorIdentity as is, if the format is like UserPrincipalName. </returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.OnSendingRequest(System.Object,Microsoft.OData.Client.SendingRequest2EventArgs,Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.Activity)"> <summary> The 'OnSendingRequest' callback. Extracts the required information in to the passed in service request object. </summary> <param name="sender"> The sender. </param> <param name="sendingRequestEventArgs"> The sending request event args. </param> <param name="serviceActivity"> The service activity. </param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.OnReceivingResponse(System.Object,Microsoft.OData.Client.ReceivingResponseEventArgs,Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.Activity)"> <summary> The 'OnReceivingResponse' callback. Extract the required information in to the passed in service request object. </summary> <param name="sender"> The sender. </param> <param name="receivingResponseEventArgs"> The event. </param> <param name="serviceActivity"> The current service request. </param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ProcessAndPrintWarningsFromResponse(Microsoft.OData.Client.ReceivingResponseEventArgs)"> <summary> Process warnings from server and print them to user. </summary> <param name="response">OData response.</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ExtractServerInformation(Microsoft.OData.IODataResponseMessage)"> <summary> Extracts the server information from the response message. </summary> <param name="response"> The response message to extract server information from. </param> <returns> A <see cref="T:Microsoft.Exchange.Management.AdminApiProvider.Instrumentation.ServerInformation"/>. </returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ExtractThrottlingInformation(Microsoft.OData.IODataResponseMessage)"> <summary> Extracts the throttling information from the response message. </summary> <param name="response"> The response message to extract throttling information from. </param> <returns> A <see cref="T:Microsoft.Exchange.Management.AdminApiProvider.Instrumentation.ThrottlingInformation"/>. </returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.GetRetryAfterHeaderValue(Microsoft.OData.IODataResponseMessage)"> <summary> Extracts the value of the 'Retry-After' header (if any) from the response. </summary> <param name="response"> The response to extract from. </param> <returns> The retry-after value in TimeSpan representation (if any). </returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.IsSuccess(System.Net.Http.HttpMethod,System.Int32)"> <summary> Checks whether the give status code should be treated as success for the given HTTP method. </summary> <param name="httpMethod"> The HTTP method. </param> <param name="statusCode"> The HTTP status code. </param> <returns> True if success, False otherwise. </returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.IsRetryableHttpResponse(System.Int32,System.Nullable{System.TimeSpan}@)"> <summary> Tells if the Http response is retryable </summary> <param name="httpResponseCode">HTTP Response code</param> <param name="waitTime"> The wait time before the retry (if any) should be attempted. </param> <returns>Whether the Http response is retryable</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ParseTenantID(System.Uri)"> <summary> Parses Tenant ID from Request Uri </summary> <param name="resquestUri">Request Uri</param> <returns>Tenant ID</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ObjectWriteStarted"> <summary> Callback to signify that the write object has started </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.ObjectWriteEnded(System.UInt32,System.Exception,System.Boolean)"> <summary> Callback to signify that the write object was complete </summary> <param name="outputObjectsWritten">outputObjectsWritten count</param> <param name="exception">Exception if any</param> <param name="success">Success status of the activity</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProvider`1.LogActivityDetailWithExceptionHandling"> <summary> Logs the activity details in the log and in case any error occurs during writing then it prints those errors in console as warning, but do not throw them back in the call stack. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1"> <summary> Represents the ApiProviderContext object that is passed to Apiprovider for init </summary> <typeparam name="T">Type of the cmdlet to be returned</typeparam> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.headersAddedByCmdletProvider"> <summary> Key Value Collection for Header. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.#ctor(Microsoft.Exchange.Management.AdminApiProvider.IAuthenticationProvider,Microsoft.Exchange.Management.AdminApiProvider.Container,Microsoft.OData.Client.DataServiceQuery{`0},System.UInt32,System.Boolean,Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.Activity,Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger,System.Threading.CancellationToken,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Collections.Generic.IDictionary{System.String,System.String})"> <summary> Constructor for ApiProviderContext </summary> <param name="authProvider">Authentication Provider for REST API</param> <param name="context">The query context generated by OData Client library</param> <param name="cmdletQuery">OData DataServiceQuery which encapsulates the LINQ query we want to execute on the REST API</param> <param name="resultSize">Number of records we want to return.</param> <param name="isBulkRetrieval">Do we want bulk retrieval?</param> <param name="serviceActivity">ServiceActivity associated to this context object</param> <param name="consoleLogger">ConsoleLogger used for writing console messages</param> <param name="cancellationToken">CancellationToken to interrupt the execution</param> <param name="clientRequestId">Client Request Id for this running instance</param> <param name="xAnchorIdentity">XAnchorIdentity to use to call the REST api</param> <param name="xAnchorIdentityPrefix">prefix to use to append to signify the type of the xAnchorIdentity</param> <param name="cmdletRunningInMultiThreadEnvironment">True means cmdlet is running in multi threading mode. As precaution, by default we consider to be in multi threading environment and interact with IO with multi threading safe checks.</param> <param name="isBatchedQueries">IsBatched queries param</param>isBatchedQueries <param name="headersAddedByCmdletProvider">Header to be added in Reqeust call</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.#ctor(Microsoft.Exchange.Management.AdminApiProvider.IAuthenticationProvider,Microsoft.Exchange.Management.AdminApiProvider.Container,System.Collections.Generic.List{Microsoft.OData.Client.DataServiceQuery{`0}},System.UInt32,System.Boolean,Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.Activity,Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger,System.Threading.CancellationToken,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Collections.Generic.IDictionary{System.String,System.String})"> <summary> Constructor for ApiProviderContext </summary> <param name="authProvider">Authentication Provider for REST API</param> <param name="context">The query context generated by OData Client library</param> <param name="cmdletQueryList">OData DataServiceQuery list which encapsulates the LINQ query we want to execute on the REST API</param> <param name="resultSize">Number of records we want to return.</param> <param name="isBulkRetrieval">Do we want bulk retrieval?</param> <param name="serviceActivity">ServiceActivity to capture the activities for telemetry</param> <param name="consoleLogger">ConsoleLogger used for writing console messages</param> <param name="cancellationToken">CancellationToken to interrupt the execution</param> <param name="clientRequestId">Client Request Id for this running instance</param> <param name="xAnchorIdentity">XAnchorIdentity to use to call the REST api</param> <param name="xAnchorIdentityPrefix">prefix to use to append to signify the type of the xAnchorIdentity</param> <param name="cmdletRunningInMultiThreadEnvironment">True means cmdlet is running in multi threading mode. As precaution, by default we consider to be in multi threading environment and interact with IO with multi threading safe checks.</param> <param name="isBatchedQueries">IsBatched queries param</param>isBatchedQueries <param name="headersAddedByCmdletProvider">Header to be added in Reqeust call</param> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.AuthProvider"> <summary> Authentication Provider for REST API </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.Context"> <summary> The query context generated by OData Client library </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.CmdletQuery"> <summary> OData DataServiceQuery which encapsulates the LINQ query we want to execute on the REST API </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.CmdletQueryList"> <summary> OData DataServiceQuery list which encapsulates the LINQ query we want to execute on the REST API </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.PendingResultSize"> <summary> Result size </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.IsBulkRetrieval"> <summary> Do we want bulk retrieval? </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.ServiceActivity"> <summary> Service activity for this activity to corelate to </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.ConsoleLogger"> <summary> ConsoleLogger used for writing console messages </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.CancellationToken"> <summary> Cancellation token </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.ClientRequestId"> <summary> unique GUID to track an individual commandlet run </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.XAnchorIdentity"> <summary> XAnchorIdentity to be used for the current request </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.XAnchorIdentityPrefix"> <summary> XAnchorIdentityPrefix to be used for the current request </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.ContinuationToken"> <summary> Continuation token for next request </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.CmdletRunningInMultiThreadEnvironment"> <summary> True if cmdlet is running in multi threading environment. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.batchedQueries"> <summary> Is the request going to be of batched queries </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext`1.HeadersAddedByCmdletProvider"> <summary> These Headers added by cmdlet class to populate in Request Header. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.AppSettingsConstants"> <summary> Constant class for defining all the settings defaults. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.AppSettings"> <summary> Class for defining all the app settings </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.connectionUri"> <summary> Private backup variable for Connection URI </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.TokenProvider"> <summary> Current Token Provider </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.AzureADAuthorizationEndpointUri"> <summary> Azure Active Directory Authorization Endpoint Uri </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.BaseUri"> <summary> Returns the Base URI for Admin API </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.ClientAppId"> <summary> Client App ID as registered </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.ClientAppRedirectUri"> <summary> Redirect URI for Client app </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.ConnectionUri"> <summary> Connection URI </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.ReturnSize"> <summary> Specifies how many number of records will be returned by default </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.IsBasicAuth"> <summary> Specifies if we are using Basic Auth </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.IsBetaEndpoint"> <summary> Specifies if we are using Beta endpoint for the Admin API </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.IsAdminApiNetCore"> <summary> Specifies if we are using AdminApi .Net Core </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.IsAdminApiNetFramework"> <summary> Specifies if we are using AdminApi NetFramework </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.MaxRetryTimes"> <summary> Maximum number of times for retry </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.PageSize"> <summary> Page size </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.RetryIntervalInMilliSeconds"> <summary> Initial wait time between retries in miliseconds </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.ProcessThreadLimit"> <summary> Number of concurrent threads a process can create </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.CmdletThreadLimit"> <summary> Number of concurrent threads a cmdlet can create </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.ConnectionPool"> <summary> Buffer connections for no delay during connections' cleanup </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.HttpConnectionLimit"> <summary> The number of concurrent Http connections that can be created </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.RetryIntervalExponentBase"> <summary> For exponential retries, the base of exponents </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.HTTPTimeout"> <summary> Default HTTP Timeout in seconds </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.TrackPerformance"> <summary> Flag to enable/disable performance tracking. Is disabled by default. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.ShowProgress"> <summary> Flag to enable/disable showing of the number of objects written </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.UseMultithreading"> <summary> Flag to enable/disable multithreading usage at global level Currently only Get-ExoMailboxFolderPermissions is using this </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.BatchSize"> <summary> Max queries allowed in a batch request </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.LogDirectoryPath"> <summary> Log directory path. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.MaxLogSize"> <summary> Gets/Sets max size of log file in bytes </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.MaxDirectorySize"> <summary> Gets/Sets max size of directory in bytes </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.LogRetryMessagesInWarning"> <summary> Use warning log severity to log retry attempt messages. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.PrintWarningsReceivedFromServer"> <summary> Should we show warnings sent by server to user. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.LogLevel"> <summary> LogLevel to log for </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.RoutingHint"> <summary> Routing Hint override if any </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.RoutingHintPrefix"> <summary> Routing Hint prefix override if any </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.ConnectionId"> <summary> ConnectionId used to associate RPS with EXO cmdlets between a Connect-ExchangeOnline and DisconnectExchangeOnline </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.ClientProcessId"> <summary> ClientProcessID denotes the processId of the Powershell window of the client </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.PSVersion"> <summary> PSVersion indicates the PowerShell version used by the client </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.OSVersion"> <summary> The OSVersion of the client </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.EXOModuleVersion"> <summary> The EXOModuleVersion being used </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.IsCloudShellEnvironment"> <summary> The IsCloudShell Environment </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.GetAcquireTokenEndpoint(System.String)"> <summary> Acquire token endpoint override </summary> <param name="connectionUri">Connectionuri String</param> <returns>Returns Acquire token endpoint</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.GetForcedTargetVersionHeaderValue"> <summary> Get forced target version header value </summary> <returns>Forced target version</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.GetBaseUri(System.String)"> <summary> Gets the base URI for given ConnectionUri </summary> <param name="connectionUri">Connection URI string</param> <returns>Base URI string</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AppSettings.IsValidUri(System.String)"> <summary> Checks if the URI string is valid </summary> <param name="uriString">URI string</param> <returns>A boolean whether or not the Uri is valid</returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.LogType"> <summary> Enum class for defining all the log types </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger"> <summary> This class helps in logging data through multiple threads in a threadsafe way Its a workout over the powershell cmdlets limitation of allowing printing to console only through main thread </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.IsUnitTest"> <summary> Set to true only in unit tests. Its for unit tests which depends on logs printing </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.logQueue"> <summary> Concurrent Log Queue </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.exceptionLogger"> <summary> Concurrent exceptionLogger </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.writeError"> <summary> writeError param </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.iOPipeline"> <summary> Cmdlet class whose Logger we want to use </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.useQueueForLogMessages"> <summary> If configured, we will push all log messages in a queue and when asked to print, we read them from queue. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.SetIOPipeline(Microsoft.Exchange.Management.AdminApiProvider.IIOPipeline)"> <summary> Set IoPipeline </summary> <param name="pipeline">IIOPipeline type</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.SetExceptionPipeline(System.Action{System.Exception})"> <summary> Set Exception pipeline </summary> <param name="writeError">writeError param</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.UseQueueForLogMessages(System.Boolean)"> <summary> Setter for useQueueForLogMessages </summary> <param name="useQueue">true if we want to use queue.</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.Info(System.String)"> <summary> Logs verbose information to the console </summary> <param name="message">Message to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.Debug(System.String)"> <summary> Logs debug information to the console </summary> <param name="message">Message to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.Warning(System.String)"> <summary> Logs warning information to the console </summary> <param name="message">Message to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.LogException(System.Exception)"> <summary> Logs exception to the console </summary> <param name="ex">Exception to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.Error(System.String)"> <summary> Logs error to the console </summary> <param name="message">message to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.PrintLog(System.Boolean)"> <summary> Print logs present in the queue </summary> <param name="logAll">Whether to print just one log or all</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.MessageLogger(Microsoft.Exchange.Management.AdminApiProvider.LogType,System.String)"> <summary> Logs error information to the console </summary> <param name="logType">Type of message to log</param> <param name="message">Message to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.MessageLogger(System.Exception)"> <summary> Logs error information to the console </summary> <param name="ex">Message to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.EnqueueLog(Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.ConsoleLog)"> <summary> Enqueues the log to the internal queue </summary> <param name="log">Message to log</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.ConsoleLog"> <summary> Private class used to log messages on console </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.ConsoleLog.LogTypeParameter"> <summary> Log Type as Debug </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.ConsoleLog.Message"> <summary> message to be displayed </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.ConsoleLog.Exception"> <summary> Exception param </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.ConsoleLog.#ctor(Microsoft.Exchange.Management.AdminApiProvider.LogType,System.String)"> <summary> Constructor for ConsoleLog. Adds threadID to log msg. </summary> <param name="type">log level</param> <param name="message">Message to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger.ConsoleLog.#ctor(System.Exception)"> <summary> Constructor for ConsoleLog for exception logging </summary> <param name="ex">Exception to log</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1"> <summary> This class creates multithreading capabilities over apiprovider which cmdlets can use to parallelise or asynchronize their request. It also has framework for collecting data from all created threads(task) and calling given call back function over each of the returned object </summary> <typeparam name="T"> Type of the result that job controller expects</typeparam> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.useMultithreading"> <summary> Use MultiThreading flag </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.globalThreadLimiter"> <summary> Global thread limiter </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.requestCounter"> <summary> Request counter </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.cmdletThreadLimiter"> <summary> Cmdlet thread limiter </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.tasks"> <summary> Concurrent queue for tasks </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.asyncConsoleLogger"> <summary> Async console logger </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.#ctor(Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger)"> <summary> Constructor for the AsyncJobController. This takes the async console logger as an input param </summary> <param name="asyncConsoleLogger">asyncConsoleLogger Param</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.SetPipelineAndMultithreadingParams(System.Boolean,System.Action{System.Exception})"> <summary> Set IOPipeline for logging </summary> <param name="useMultithreading">Param to decide if the caller cmdlet needs multithreading</param> <param name="writeError">Function for logging exception</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.InvokeTask(Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext{`0},System.Action{`0},System.Action{System.Exception})"> <summary> Invoke a new task in a seperate thread </summary> <param name="queryContext">Query container</param> <param name="writeObject">Function to consume the returned item/items from created task</param> <param name="writeError">Function to consume the errors/exceptions encountered for task</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.WriteResponses(System.Action{`0},System.Action{System.Exception})"> <summary> Write responses of all the tasks in the task queue </summary> <param name="writeObject">Function to consume the returned item/items from created task</param> <param name="writeError">Function to consume the errors/exceptions encountered for task</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.TaskHandler(System.Threading.CancellationToken,System.Func{System.Collections.Generic.List{`0}})"> <summary> Creates a new thread and calls InvokeQuery in it </summary> <param name="cancellationToken">Cancellation Token</param> <param name="task">A functor that calls the cmdlet</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.PrintTaskWithoutBlockingMain(System.Action{`0},System.Action{System.Exception})"> <summary> Print task only when there are enough waiting tasks in queue </summary> <param name="writeObject">Function to consume the returned item/items from created task</param> <param name="writeError">Function to consume the errors/exceptions encountered for task</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.InvokeQuery(Microsoft.Exchange.Management.AdminApiProvider.ApiProviderContext{`0},System.Action{`0},System.Action{System.Exception})"> <summary> Invoke ApiProvider query for the querycontext provided </summary> <param name="queryContext">Query container</param> <param name="writeObject">Function to consume the returned item/items from created task</param> <param name="writeError">Function to consume the errors/exceptions encountered for task</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.PrintTaskResult(System.Action{`0},System.Action{System.Exception})"> <summary> Pop the first task and print its result </summary> <param name="writeObject">Function to consume the returned item/items from first task in the queue</param> <param name="writeError">Function to consume the errors/exceptions encountered for task</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AsyncJobController`1.WriteTask(System.Threading.Tasks.Task{System.Collections.Generic.List{`0}},System.Action{`0},System.Action{System.Exception})"> <summary> Print task result </summary> <param name="task">task whose result is to be consumed</param> <param name="writeObject">Function to consume the returned item/items from the given task</param> <param name="writeError">Function to consume the errors/exceptions encountered for task</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider"> <summary> Basic Auth Token Provider </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.objectId"> <summary> Object Id of this TokenProvider </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.context"> <summary> Token Provider Context object </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.#ctor(Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext)"> <summary> Constructor of BasicAuthTokenProvider </summary> <param name="context">Context object</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.GetAccessToken(System.String,System.String)"> <summary> Interface function to get access token </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId for logging</param> <returns>Returns access token</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.GetAccessTokenSilent(System.String,System.String)"> <summary> Interface function to get access token from Refresh token if possible. </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId for logging</param> <returns>Returns access token from Refresh token if possible.</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.IsTokenCacheEmpty"> <summary> Check if the current token cache is empty </summary> <returns>TRUE incase the token cache is empty</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.GetValidTokenFromCache(System.String)"> <summary> Get a valid token from the cache </summary> <param name="cmdletId">cmdletId for logging</param> <returns>A token from the cache if the token is not expired, returns null otherwise.</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.RemoveInvalidTokenFromCache"> <summary> Remove the expired/invalid token from the cache </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.ClearAllTokens"> <summary> Clear all tokens </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.SetConsoleLogger(Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger)"> <summary> Set Console Logger </summary> <param name="asyncConsoleLogger">asyncConsoleLogger param</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.GetObjectId"> <summary> Get Object Id </summary> <returns>The object Id</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.GetGraphToken(System.String,System.String)"> <summary> Get access token for graph </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId to be used for logging</param> <returns>Token for graph</returns> <exception cref="T:System.NotImplementedException">Not implemented</exception> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.GetAccessTokenSilent(System.Collections.Generic.IEnumerable{System.String},System.String)"> <inheritdoc/> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.GetTokenInformation"> <summary> Get the token information object </summary> <returns>TokenInformation object</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.GetAuthorizationHeader"> <summary> Gets the Authorization Header </summary> <returns>Authorization Header type and header value</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.BasicAuthTokenProvider.GetTenantId"> <summary> Gets the Tenant Id </summary> <returns>Tenant Id</returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.CertificateProviderUtils"> <summary> A utility class with APIs to access the certificate from local store for Authentication APIs. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.CertificateProviderUtils.GetCertificate(Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext)"> <summary> Gets the certificate based on thumbprint or certificate filePath </summary> <param name="context">tokenProvider context</param> <returns>Certificate for auth</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.CertificateProviderUtils.GetCertificateFromStore(System.String)"> <summary> Fetch the certificate from the current user's store which matches the given Thumbprint. </summary> <param name="thumbprint">Certificate Thumbprint</param> <returns>Certificate instance from the Certificate store corresponding to the thumbprint</returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider"> <summary> External Access Token Provider used when user provides an Access token as input. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.objectId"> <summary> Object Id of this TokenProvider </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.context"> <summary> Token Provider Context object </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.cmdletLogger"> <summary> Cmdletlogger instance to write to the log file </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.asyncConsoleLogger"> <summary> asyncConsoleLogger instance </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.tokeninfo"> <summary> Contains the TokenInformation </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.authorizationHeader"> <summary> The token with Bearer prefix. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.#ctor(Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext,Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.ICmdletLogger)"> <summary> Constructor of ExternalAccessTokenProvider </summary> <param name="context">Context object</param> <param name="cmdletLogger">logger to use when Error reporting is enabled</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.#ctor(Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.ICmdletLogger)"> <summary> Internal constructor to be used for unit tests only. </summary> <param name="cmdletLogger">The logger to be used for cmdlet logging</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.GetAccessToken(System.String,System.String)"> <summary> Interface function to get access token </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId for logging</param> <returns>Returns access token</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.GetAccessTokenSilent(System.String,System.String)"> <summary> Interface function to get access token from Refresh token if possible. In this case, just return the external access token. </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId for logging</param> <returns>Returns access token</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.IsTokenCacheEmpty"> <summary> Check if the current token cache is empty </summary> <returns>TRUE incase the token cache is empty</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.GetValidTokenFromCache(System.String)"> <summary> Get a valid token from the cache if the token is not expired, returns null otherwise. In this case, just return the external access token. </summary> <param name="cmdletId">cmdletId for logging</param> <returns>the token from the cache</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.RemoveInvalidTokenFromCache"> <summary> Remove the expired/invalid token from the cache does nothing. Since an external token has been provided, we do not clear it from cache as a new token cannot be acquired. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.ClearAllTokens"> <summary> Clear all tokens does nothing. Since an external token has been provided, we do not clear it from cache as a new token cannot be acquired. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.SetConsoleLogger(Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger)"> <summary> Set Console Logger </summary> <param name="asyncConsoleLogger">asyncConsoleLogger param</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.GetObjectId"> <summary> Get Object Id </summary> <returns>The object Id</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.GetGraphToken(System.String,System.String)"> <summary> Get access token for graph </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId to be used for logging</param> <returns>Token for graph</returns> <exception cref="T:System.NotImplementedException">Not implemented</exception> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.GetAccessTokenSilent(System.Collections.Generic.IEnumerable{System.String},System.String)"> <inheritdoc/> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.GetTokenInformation(System.String)"> <summary> Get the token information object Token expiry is not set since we do not parse the external access token. </summary> <param name="cmdletId">cmdletId for logging</param> <returns>TokenInformation object</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.GetTenantId(System.String)"> <summary> Gets the Tenant Id Best effort of getting the TID from the access token. If there is no TID claim in the token then return the Organization value provided by the user. </summary> <param name="cmdletId">cmdletId for logging</param> <returns>Tenant Id</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ExternalAccessTokenProvider.LogCmdletGenericInfo(System.String,System.String)"> <summary> Adds a statement to GenericInfo of the cmdlet for which the token provider was called. </summary> <param name="cmdletId">The current cmdletId</param> <param name="info">The info to log</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider"> <summary> ITokenProvider interface </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider.GetAccessToken(System.String,System.String)"> <summary> Interface function to get access token </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId to be used for logging</param> <returns>Returns access token</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider.GetAccessTokenSilent(System.String,System.String)"> <summary> Interface function to get access token from Refresh token if possible. </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId to be used for logging</param> <returns>Returns access token from Refresh token if possible.</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider.GetAccessTokenSilent(System.Collections.Generic.IEnumerable{System.String},System.String)"> <summary> Interface function to get access token silently, if possible. </summary> <param name="scopes">Required Scopes.</param> <param name="cmdletId">cmdletId to be used for logging</param> <returns>Returns access token.</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider.IsTokenCacheEmpty"> <summary> Check if the current token cache is empty </summary> <returns>TRUE incase the token cache is empty</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider.GetValidTokenFromCache(System.String)"> <summary> Get a valid token from the cache </summary> <param name="cmdletId">cmdletId to be used for logging</param> <returns>A token from the cache if the token is not expired, returns null otherwise.</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider.RemoveInvalidTokenFromCache"> <summary> Remove the expired/invalid token from the cache </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider.ClearAllTokens"> <summary> Clear all tokens </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider.SetConsoleLogger(Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger)"> <summary> Set Console Logger </summary> <param name="asyncConsoleLogger">asyncConsoleLogger param</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider.GetObjectId"> <summary> Get Object Id </summary> <returns>The object Id</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ITokenProvider.GetGraphToken(System.String,System.String)"> <summary> Interface function to get access token for graph </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId to be used for logging</param> <returns>Token for graph</returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.JwtSecurityTokenUtils"> <summary> JWT Security Token Utils class. This class is used to extract the relevant details from the Cloudshell token. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.JwtSecurityTokenUtils.UpnIdentifierInToken"> <summary> String that identifies UPN in Token </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.JwtSecurityTokenUtils.TenantIdentifierInToken"> <summary> String that identifies TenantID in Token </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.JwtSecurityTokenUtils.GetUserPrincipalNameAndTenantId(System.String,System.String@,System.String@)"> <summary> Extracts UPN and tenantId from JWT Security Token </summary> <param name="accessToken">Access Token String</param> <param name="userPrincipalName">output param for userPrincipalName</param> <param name="tenantId">Output param for tenantid</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.JwtSecurityTokenUtils.GetTenantId(System.String)"> <summary> Extracts tenantId from JWT Security Token </summary> <param name="accessToken">Access Token String</param> <returns>tid claim value from token if found else null</returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider"> <summary> ManagedIdentityTokenProvider class </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.DefaultMITokenUri"> <summary> IDMS end point to acquire token for Managed Identity in Azure VM </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.DefaultApiProviderVersion"> <summary> API provider version to extract Managed Identity token https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/tutorial-windows-vm-access-arm </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.AppServiceApiProviderVersion"> <summary> App Service and Functions API provider version to extract Managed Identity token https://docs.microsoft.com/en-us/azure/app-service/overview-managed-identity </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.ClientId"> <summary> Query parameter to be used for User Assigned Managed Identity </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.MetadataHeader"> <summary> Metadata Header name </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.IdentityEndpointKey"> <summary> Holds the key for reading IDENTITY_ENDPOINT Environment variable. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.IdentityHeaderKey"> <summary> Holds the key for reading IDENTITY_HEADER Environment variable. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.XIdentityHeaderName"> <summary> X-IDENTITY-HEADER Header name. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.TokenInfo"> <summary> Latest token used as a cached element for determining validity of token in cache Keeping it protected to be able to set the value in sub class in unit test. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.IdentityUnavailableError"> <summary> Error given when requested identity is not assigned to resource </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.GatewayError"> <summary> Error given due to gateway issues </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.httpClient"> <summary> Http client to be used for getting token </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.asyncConsoleLogger"> <summary> asyncConsoleLogger instance </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.context"> <summary> Member variable for TokenProviderContext </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.cmdletLogger"> <summary> Cmdletlogger instance to write to the log file </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.objectId"> <summary> Object Id of this Token provider </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.#ctor(Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext,Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.ICmdletLogger,System.Net.Http.HttpClient)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider" /> class. </summary> <param name="tokenProviderContext">Token Provider Context</param> <param name="cmdletLogger">The logger to be used for cmdlet logging</param> <param name="httpClient">The httpClient to be used for getting token</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.#ctor(Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.ICmdletLogger)"> <summary> Internal constructor to be used for unit tests only. </summary> <param name="cmdletLogger">The logger to be used for cmdlet logging</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.GetAccessToken(System.String,System.String)"> <summary> Get managed identity auth token </summary> <param name="claims">claims param sent by CAE module indicating to AAD that some user's setting have been changed which requires re-auth</param> <param name="cmdletId">cmdletId for which the call is made</param> <returns>Returns token information</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.ClearAllTokens"> <summary> It clears the cached MSI token </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.GetValidTokenFromCache(System.String)"> <summary> Get a valid token from the cache </summary> <param name="cmdletId">cmdletId for which the call is made</param> <returns>valid token which it gets silently</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.GetAccessTokenSilent(System.String,System.String)"> <summary> Get access token from cache. If not it then calls to get a fresh one </summary> <param name="claims">claims param sent by CAE module </param> <param name="cmdletId">cmdletId for which the call is made</param> <returns> Returns access token.</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.GetAccessTokenSilent(System.Collections.Generic.IEnumerable{System.String},System.String)"> <inheritdoc/> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.SetConsoleLogger(Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger)"> <summary> Set Console Logger </summary> <param name="asyncConsoleLogger">asyncConsoleLogger instance </param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.GetObjectId"> <summary> Get Object Id </summary> <returns>The object Id</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.IsTokenCacheEmpty"> <summary> Indicates whether the cache maintained by provider is empty </summary> <returns>boolean indicating whether cache maintained by provider is empty</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.RemoveInvalidTokenFromCache"> <summary> Removes invalid token from cache. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.GetGraphToken(System.String,System.String)"> <summary> Get access token for graph </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId to be used for logging</param> <returns>Token for graph</returns> <exception cref="T:System.NotImplementedException">Not implemented</exception> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.GetAccessTokenAsync(System.String,System.String)"> <summary> Get managed identity auth token asynchronously </summary> <param name="claims">claims param sent by CAE module indicating to AAD that some user's setting have been changed which requires re-auth</param> <param name="cmdletId">the cmdlet id for which token is required</param> <returns>Returns token information</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.CreateHttpRequest"> <summary> Creates HttpRequest object to be used in getting Managed Identity Token </summary> <returns>HttpRequestMessage instance</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.GetHttpRequest(System.String,System.Boolean,System.String)"> <summary> Get the Http request </summary> <param name="requestUri">Request Uri</param> <param name="isAppServiceAndFunctionHost">Whether this is App service and Functions azure resource</param> <param name="identityHeader">identityHeader environment variable value to get Managed Identity token </param> <returns>HttpRequestMessage for the current endpoint</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.BuildTokenRequestUri(System.Boolean,System.String)"> <summary> Build Token Request Uri </summary> <param name="isAppServiceAndFunctionHost">Whether this is App service and Functions azure resource</param> <param name="identityEndpoint">identityEndpoint environment variable value to get Managed Identity token </param> <returns>Token Request Uri</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.GetTokenInfoFromAccessToken(Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenInfo)"> <summary> Get Token Information from access Token. It constructs the authorization and other details such as up and tenantId needed to construct tokenInformation object </summary> <param name="managedIdentityTokenInfo">Managed Identity token info</param> <returns>Token Request Uri</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.LogCmdletGenericInfo(System.String,System.String)"> <summary> Adds a statement to GenericInfo of the cmdlet for which the token provider was called. </summary> <param name="cmdletId">The current cmdletId</param> <param name="info">The info to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedIdentityTokenProvider.LogCmdletGenericError(System.String,System.String)"> <summary> Adds an error to GenericError of the cmdlet for which the token provider was called. </summary> <param name="cmdletId">The current cmdletId</param> <param name="error">The error to log</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenInfo"> <summary> Wire representation of MSI token </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenInfo.AccessToken"> <summary> Gets or sets AccessToken </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenInfo.ExpiresOn"> <summary> Gets or sets ExpiresOn </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenInfo.ShouldCache"> <summary> Should this object be cached </summary> <returns> true if this object should be cached </returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenInfo.IsExpired"> <summary> Is this object expired </summary> <returns> true if expired </returns> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.DefaultMSILoginUri"> <summary> MSI end point to acquire token in Cloud Shell </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.ApiProviderVersion"> <summary> API provider version to extract MSI token https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/overview </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.tokenInfo"> <summary> New supported audiences needs to be added in this list </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.asyncConsoleLogger"> <summary> asyncConsoleLogger instance </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.context"> <summary> Member variable for TokenProviderContext </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.ObjectId"> <summary> Object Id of this Token provider </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.#ctor(Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider" /> class. </summary> <param name="tokenProviderContext">Token Provider Context</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.GetAccessToken(System.String,System.String)"> <summary> Get MSI AUTH Token by making an HTTP call </summary> <returns>Token Information</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.Microsoft#Exchange#Management#AdminApiProvider#Authentication#ITokenProvider#ClearAllTokens"> <summary> It clears the cached MSI token </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.GetValidTokenFromCache(System.String)"> <summary> Get a valid token from the cache Gets the cached token if the expiry is still within expiry offset, else returns null. </summary> <returns>A matching token from the underlying token which it gets silently</returns> </member> <!-- Badly formed XML comment ignored for member "M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.GetAccessTokenSilent(System.String,System.String)" --> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.SetConsoleLogger(Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger)"> <summary> Set Console Logger </summary> <param name="asyncConsoleLogger">asyncConsoleLogger instance </param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.GetObjectId"> <summary> Get Object Id </summary> <returns>The object Id</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.IsTokenCacheEmpty"> <summary> Indicates whether the cache maintained by provider is empty </summary> <returns>boolean indicating whether cache maintained by provider is empty</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.RemoveInvalidTokenFromCache"> <summary> Removes invalid token from cache. </summary> <returns>boolean indicating whether cache maintained by provider is empty</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.GetGraphToken(System.String,System.String)"> <summary> Get access token for graph </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId to be used for logging</param> <returns>Token for graph</returns> <exception cref="T:System.NotImplementedException">Not implemented</exception> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.GetAccessTokenSilent(System.Collections.Generic.IEnumerable{System.String},System.String)"> <inheritdoc/> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.BuildTokenRequestUri(System.String)"> <summary> Build Token Request Uri </summary> <param name="endPoint">End Point for which token is acquired</param> <returns>Token Request Uri</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.ManagedServiceTokenProvider.GetTokenInfoFromAccessToken(System.String)"> <summary> Get Token Information from access Token. It constructs the authorization and other details such as up and tenantId needed to construct tokenInformation object </summary> <param name="endPoint">End Point for which token is acquired</param> <returns>Token Request Uri</returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider"> <summary> MSALTokenProvider class </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.publicClientApplicationMap"> <summary> Dictionary to hold current instance of PCA or null in case its a cca </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.context"> <summary> TokenProvider Context </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.asyncConsoleLogger"> <summary> asyncConsoleLogger instance </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.cmdletLogger"> <summary> Cmdletlogger instance to write to the log file </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.ctrlCEventHandler"> <summary> Event handler to cancel auth token. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.publicClientApplication"> <summary> Public ClientApplication </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.confidentialClientApplication"> <summary> Confidential ClientApplication - used for Certificate based flow </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.cancellationTokenSource"> <summary> CancellationToken Source </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.graphResource"> <summary> Resource to access graph endpoint </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.latestGraphTokenUsed"> <summary> Latest graph token used as a cached element for determining validity of token in cache </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.latestTokenUsed"> <summary> Latest EXO/EOP token used as a cached element for determining validity of token in cache </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.latestServiceTokenUsed"> <summary> Latest Service token used as a cached element for determining validity of token in cache. This has the mapping for Scope to TokenInformation. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.objectId"> <summary> Object Id of this TokenProvider </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.#ctor(Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext)"> <summary> MSALTokenProvider constructor Initializes the PCA if not already present. </summary> <param name="tokenProviderContext"> Token Provider context </param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.#ctor(Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext,Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.ICmdletLogger)"> <summary> MSALTokenProvider constructor Initializes the PCA if not already present. </summary> <param name="tokenProviderContext">Token Provider context</param> <param name="cmdletLogger">The logger to be used for cmdlet logging</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.#ctor(Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.ICmdletLogger)"> <summary> Internal constructor to be used for unit tests only. </summary> <param name="cmdletLogger">The logger to be used for cmdlet logging</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.ClearAllTokens"> <summary> Clears all the tokens from the cache </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetAccessToken(System.String,System.String)"> <summary> Get Access Token using MSAL auth Below are the steps occuring internally: 1. If its a reconnect flow or UPn is not empty get the token silently 2. Else call GetTokenAsync which handles all the other cases. </summary> <param name="claims">claims param sent by CAE module indicating to AAD that some user's setting have been changed which requires re-auth</param> <param name="cmdletId">cmdletId for which the call is made</param> <returns>Returns token information</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.RemoveInvalidTokenFromCache"> <summary> As of now the cache is maintained in MSAL and there is no outside control for the maintainance of that cache. Hence leaving the implementation empty </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetAccessTokenSilent(System.String,System.String)"> <summary> Get access token from Refresh token if token is still valid. If not it then calls to get a fresh one </summary> <param name="claims">claims param sent by CAE module indicating to AAD that some user's setting have been changed which requires re-auth</param> <param name="cmdletId">cmdletId for which the call is made</param> <returns> Returns access token from Refresh token if token is still valid.</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetAccessTokenSilent(System.Collections.Generic.IEnumerable{System.String},System.String)"> <inheritdoc/> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetValidTokenFromCache(System.String)"> <summary> Get a valid token from the cache </summary> <param name="cmdletId">cmdletId for which the call is made</param> <returns>A matching token from the underlying token which it gets silently</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.IsTokenCacheEmpty"> <summary> Indicates whether the last token that was used was null or not. it would be null in case of default init when no token exists or after ClearAllTokens </summary> <returns>boolean indicating whether the last token that was used was null or not</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.Dispose"> <summary> Dispose method - removes the delegate </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.SetConsoleLogger(Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger)"> <summary> Set Console Logger </summary> <param name="asyncConsoleLogger">asyncConsoleLogger instance </param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetObjectId"> <summary> Get Object Id </summary> <returns>The object Id</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetGraphToken(System.String,System.String)"> <summary> Get access token for graph </summary> <param name="claims">claims param</param> <param name="cmdletId">cmdletId to be used for logging</param> <returns>Token for graph</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetConfidentialClientInstance"> <summary> Initializes the Confidential Client Application </summary> <returns>An instance of CCA after initializing and returns it</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetPublicClientInstance"> <summary> Initializes the Public Client Application or extract from map if already present. Also it enters the instance in the map if newly created. </summary> <returns>An instance of PCA from the map or intializes and returns it</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.InvokeCancellation"> <summary> Method to invoke cancellation of token acquisition </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.LogCmdletGenericInfo(System.String,System.String)"> <summary> Adds a statement to GenericInfo of the cmdlet for which the token provider was called. </summary> <param name="cmdletId">The current cmdletId</param> <param name="info">The info to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.LogCmdletGenericError(System.String,System.String)"> <summary> Adds an error to GenericError of the cmdlet for which the token provider was called. </summary> <param name="cmdletId">The current cmdletId</param> <param name="error">The error to log</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetTokenForWebApiUsingUsernamePasswordAsync(System.Collections.Generic.IEnumerable{System.String},System.String,System.Security.SecureString,System.String)"> <summary> Gets an access token which invokes the username and password flow in MSAL library. This is used when the user passes the username and password using credential flow. </summary> <param name="scopes">scopes param</param> <param name="username">username param</param> <param name="password">password param</param> <param name="cmdletId">cmdletId for which the call is made</param> <returns>An authentication result, or null if the user canceled sign-in</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetTokenForWebApiUsingDeviceCodeFlowAsync(System.Collections.Generic.IEnumerable{System.String},System.String,System.String)"> <summary> Gets an access token so that the application accesses the web api in the name of the user who signs-in on a separate device </summary> <param name="scopes">scopes param</param> <param name="claims">claims param sent by CAE module indicating to AAD that some user's setting have been changed which requires re-auth</param> <param name="cmdletId">Cmdlet Id to be used when logging</param> <returns>An authentication result, or null if the user canceled sign-in, or did not sign-in on a separate device after a timeout (15 mins)</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetAccessTokenAsync(System.String,System.String)"> <summary> Get Access Token asynchronously using MSAL auth Get Access Token for various scenarios 1. It is a certificate based flow and is triggered when user passes CertificateFilePath 2. Context.CredentialUserName and Context.CredentialPassword is present : Then a new token is created based on the values. -No UI based browser redirect 3. If its device auth get the code and print it out and then wait for user to enter it in browser 4. Context.CredentialUserName is present and Context.CredentialPassword is null. It then lands the user automatically to a browser. 5. Context.UserPrincipalName is present : It takes it up as hint and lands him to browser with that UPN populated. 6. Context.UserPrincipalName is null : It takes it up as hint and lands him to browser asking for selecting a account or entering UPN. </summary> <param name="claims">claims param sent by CAE module indicating to AAD that some user's setting have been changed which requires re-auth</param> <param name="cmdletId">the cmdlet id for which token is required</param> <returns>Returns token information</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetAccessTokenSilentAsync(System.Boolean,System.String,System.String)"> <summary> Gets an access token silently in MSAL library. Internally it happens in following steps 1. In case of Cert based authentication, there is no user cache and we call AcquireTokeForClient. It uses application cache to get the tokens if it was cached previously. 2. In all other cases it calls for acquireTokenSilently. There is no user interaction here. </summary> <param name="shouldForceRefresh">shouldForceRefresh param. This is used by GetAccessTOken to get a new refreshed token</param> <param name="claims">claims param sent by CAE module indicating to AAD that some user's setting have been changed which requires re-auth</param> <param name="cmdletId">The cmdletId corresponding to the cmdlet for which this method is called</param> <returns>Returns token information</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.ClearAllTokensAsync"> <summary> It iterates over all the user accounts and remove them </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetAccountFromCache"> <summary> It iterates over all the user accounts and gets the account containing the userPrinicipalName. Else it returns null. </summary> <returns>Returns account from cache or null if not found for that username</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.MSALTokenProvider.GetGraphTokenAsync(System.String,System.String)"> <summary> Get Graph Token for certificate based flow using MSAL auth </summary> <param name="claims">claims param</param> <param name="cmdletId">the cmdlet id for which token is required</param> <returns>Returns token information</returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenInformation"> <summary> Token Information </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenInformation.#ctor"> <summary> TokenInformation Constructor </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenInformation.UserPrincipalName"> <summary> User Principal Name </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenInformation.AuthorizationHeader"> <summary> Authorization Header </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenInformation.TenantId"> <summary> Tenant Id </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenInformation.ExpiresOn"> <summary> ExpiresOn value </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenInformation.Create(System.String,System.String,System.String,System.DateTimeOffset)"> <summary> Create Token Information </summary> <param name="userPrincipalName">User Principal Name </param> <param name="authorizationHeader">Authorization Header </param> <param name="tenantId">Tenant Id</param> <param name="expiryTime">expiryTime of the token</param> <returns>Token Information </returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.AuthType"> <summary> Auth types </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.AuthType.Default"> <summary> Log in using default auth i.e. MSI auth for .netstandard 2.0 and normal auth otherwise </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.AuthType.Device"> <summary> Log in using device auth Valid only for Cloud Shell .netstandard 2.0 </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext"> <summary> Token Provider Context </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.#ctor(Microsoft.Exchange.Management.AdminApiProvider.Authentication.AuthType,System.String,System.String,System.String,System.String,System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509Certificate2,System.String,System.Security.SecureString,System.String,System.String,System.String,System.String,System.Uri,System.Boolean,System.String,System.Action{System.String})"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext" /> class. </summary> <param name="authType">Authentication type</param> <param name="clientAppId">Client APP ID </param> <param name="azureADAuthorizationEndpointUri">Azure Authorization End Point </param> <param name="acquireTokenEndpoint">Acquire Token End Point </param> <param name="userPrincipalName">User Principal Name</param> <param name="userPassword">PS Credential Password</param> <param name="certificate">Certificate object</param> <param name="certificateFilePath">Certificate file path</param> <param name="certificatePassword">Certificate Password if any</param> <param name="certificateThumbprint">Certificate Thumbprint</param> <param name="accessToken">External Access Token</param> <param name="organization">Organization in case of the App flow</param> <param name="delegatedOrganization">customer organization in case of delegation flow</param> <param name="clientAppRedirectUri">Client App redirect URI</param> <param name="identity">Whether to use Managed Identity Flow</param> <param name="accountId">AccountId to be used for User Assigned Managed Identity flow</param> <param name="writeToConsole">Action functions - to write to console</param> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.AuthType"> <summary> Auth type to decide which Token Provider to call </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.AcquireTokenEndpoint"> <summary> Acquire Token End Point </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.UserPassword"> <summary> Password from the Credential </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.AzureADAuthorizationEndpointUri"> <summary> Azure AD Authorization end point URI </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.UserPrincipalName"> <summary> User Principal Name </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.ClientAppId"> <summary> Client APP ID </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.ClientAppRedirectUri"> <summary> Client APP Redirect URI </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.WriteToConsole"> <summary> Gets Action functions </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.Certificate"> <summary> Certificate object to create the token for </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.CertificateFilePath"> <summary> Certificate file path of the certificate to be used to create the token </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.CertificatePassword"> <summary> Certificate password if any </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.CertificateThumbprint"> <summary> Certificate thumbprint of the installed certificate </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.AccessToken"> <summary> External Access token provided by the user </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.Organization"> <summary> Organization for the App only flow </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.DelegatedOrganization"> <summary> Customer Organization in delegation flow </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.Identity"> <summary> Whether to use Managed Identity flow </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext.AccountId"> <summary> AccountId to be used for User Assigned Managed Identity flow </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderFactory"> <summary> A token provider factory that will create approprite token provider for given context </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderFactory.HttpClient"> <summary> Gets the http client. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderFactory.tokenProviderMap"> <summary> Guid vs TokenProvider map </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderFactory.CreateTokenProvider(Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext,Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.ICmdletLogger)"> <summary> Create Token Provider </summary> <param name="context">Token Provider Context </param> <param name="cmdletLogger">Cmdlet logger to be used in the TokenProvider</param> <returns> Returns the created Token Provider </returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderFactory.GetTokenProvider(System.String)"> <summary> Returns the Token Provider for the given </summary> <param name="tokenProviderId">Token Provider Id</param> <returns>the Token provider associated to the token provider Id</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderFactory.RemoveTokenProvider(System.String)"> <summary> Remove the TokenProvider from the given map </summary> <param name="tokenProviderId">Token Provider Id</param> <returns>true if the token provider is removed</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderFactory.GetHttpClient"> <summary> Returns the static instance of httpClient </summary> <returns>Returns http client instance</returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils"> <summary> TokenProviderUtils class </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils.AuthGenericIdentity"> <summary> OAuth generic identity. This is used when auth result does not contain userInfo </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils.AuthenticateHeaderName"> <summary> Authenticate Header name which contains the claims in case of SSM flow </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils.ClaimsRegex"> <summary> Regex For Claims in case the user's password is revoked or CAE event </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils.TokenValidityOffsetTimeInMinutes"> <summary> Constant time offset to ensure that the token used from the provider would remain valid for next 10 minutes. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils.GetTokenInformation(Microsoft.Identity.Client.AuthenticationResult,Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext)"> <summary> Get Token Information </summary> <param name="tokenAcquisitionResult">Token Acquisition Result </param> <param name="context">Token provider context instance</param> <returns>Token Information</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils.IsCertificateBasedConnection(Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext)"> <summary> Validates if the context object is created for the certficate based flow </summary> <param name="context">Token Provider Context</param> <returns>Whether the current connection is Certificate based</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils.CheckIfTokenExpired(System.DateTimeOffset)"> <summary> Check if the token is expired based on offset. </summary> <param name="expiryTime">exiryTime of token</param> <returns>Returns true if the token is expired</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils.ExtractClaimsIfPresentFromResponseHeaders(System.Net.Http.Headers.HttpResponseHeaders)"> <summary> Extract claims if present in one of the response header with name WWW-Authenticate, else returns empty string. </summary> <param name="responseHeaders">Response headers.</param> <returns>Returns the claims if present in one of the response header with name WWW-Authenticate</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils.ExtractClaimsIfPresentFromAuthenticationHeader(System.String)"> <summary> Extract claims from the authentication header if present, else returns empty string. </summary> <param name="authenticationHeader">authenticationHeader param.</param> <returns>Returns the claims if present in AuthHeader</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderUtils.GetUPNForAppOnlyBasedConnection(Microsoft.Exchange.Management.AdminApiProvider.Authentication.TokenProviderContext)"> <summary> Since for the App only flow there is not User context, hence we need a dummy UPN which routes the request to correct enough backend. Create the UPN to use for the Certificate based and Managed Identity connections : "OAuthUser@Organization" When Organization is null/empty but DelegatedOrganization is provided, use this to create the UPN. This is used in external Access Token flow. </summary> <param name="context">Token Provider Context</param> <returns>Default UPN to use in case of the appOnly connection</returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.AuthResult"> <summary> AuthResult class </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AuthResult.#ctor(System.Collections.Generic.KeyValuePair{System.String,System.String},System.String,System.String,System.Boolean,System.Exception)"> <summary> Constructor for AuthResult </summary> <param name="authorizationHeader">AuthorizationHeader param</param> <param name="tenantId">TenantId parameter</param> <param name="userPrincipalName">UserPrincipalName param</param> <param name="isAuthenticationSucceeded">Did the authentication succeed?</param> <param name="terminatingException">Exception that terminated the authentication.</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AuthResult.#ctor"> <summary> Empty Constructor </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AuthResult.AuthorizationHeader"> <summary> The Authorization Header </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AuthResult.TenantId"> <summary> The Tenant Id </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AuthResult.UserPrincipalName"> <summary> The User Principal Name </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AuthResult.IsAuthenticationSucceeded"> <summary> Did the authentication succeed? </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AuthResult.TerminatingException"> <summary> Exception that terminated the authentication. This would be null if authentication succeeded, else it will contain the terminating exception. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthContext"> <summary> Basic Auth Context </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthContext.#ctor(System.String,System.Security.SecureString,System.Func{Microsoft.Exchange.Management.AdminApiProvider.Instrumentation.AuthenticationActivity},Microsoft.Exchange.Management.AdminApiProvider.AsyncConsoleLogger)"> <summary> Constructor for BasicAuthContext </summary> <param name="userName">UserName param</param> <param name="password">Password param</param> <param name="authenticationActivityCreator">AuthenticationActivityCreator functor</param> <param name="consoleLogger">consoleLogger used for writing console messages</param> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthContext.UserName"> <summary> User Name </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthContext.Password"> <summary> Password field </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthContext.ConsoleLogger"> <summary> ConsoleLogger used for writing console messages </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider"> <summary> BasicAuthProvider class </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider.AuthType"> <summary> Authtication Type </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider.userName"> <summary> User Name </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider.password"> <summary> Password param </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider.consoleLogger"> <summary> PowerShell console Logger </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider.#ctor(Microsoft.Exchange.Management.AdminApiProvider.BasicAuthContext)"> <summary> Constructor for BasicAuthProvider </summary> <param name="basicAuthContext">basicAuthContext param</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider.DoAuthentication(Microsoft.Online.CSE.RestApiPowerShellModule.Instrumentation.Activity,Microsoft.Exchange.Management.AdminApiProvider.AuthStrategy,System.String,System.String)"> <summary> Performs the authentication </summary> <param name="activity">activity param</param> <param name="authStrategy">authStrategy param</param> <param name="previousAuthHeaderToSkip">previousAuthHeaderToSkip param</param> <param name="claims">claims param</param> <returns>Authentication result in the form of IAuthResult</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider.IsRetryable(System.Exception,System.Nullable{System.TimeSpan}@)"> <summary> Given and exception, determines whether it is retryable </summary> <param name="ex">Exception param</param> <param name="waitTime"> The wait time before the retry (if any) should be attempted. </param> <returns>Whether the exception is retryable</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider.GetAuthorizationHeader"> <summary> Gets the Authorization Header </summary> <returns>Authorization Header type and header value</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider.GetTenantId"> <summary> Gets the Tenant Id </summary> <returns>Tenant Id</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicAuthProvider.GetUserPrincipalName"> <summary> Gets the User Principal Name </summary> <returns> The user principal name. </returns> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.BatchHelper`1"> <summary> This class helps in handling Admin API batch requests. </summary> <typeparam name="T">Type of the cmdlet</typeparam> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.BatchHelper`1.queryList"> <summary> query list param </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.BatchHelper`1.batchSize"> <summary> Batch size param </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.BatchHelper`1.queriesBatchedTillNow"> <summary> Queries batched till now param </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BatchHelper`1.GetBatchedQuery"> <summary> Get Batched query list stored till now </summary> <returns>Returns batched query list</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BatchHelper`1.BatchQueryAndCheckMaxLimit(Microsoft.OData.Client.DataServiceQuery{`0})"> <summary> Store the sent query in query list. Return true is the max batch size has been reached. If the query is null we need not store it. If the previous batch had finished, we also need to clear the list as they have been processed. </summary> <param name="query">query to be batched</param> <returns>Returns bool whether or not batch is full or not</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BatchHelper`1.HasPendingQueries"> <summary> Are there any unprocessed queries left in the list </summary> <returns>Returns bool whether or not any pending queries are left</returns> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BatchHelper`1.Clear"> <summary> Clear the batched query list </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Container"> <summary> There are no comments for Container in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.#ctor(System.Uri)"> <summary> Initialize a new Container object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.ResolveTypeFromName(System.String)"> <summary> Since the namespace configured for this service reference in Visual Studio is different from the one indicated in the server schema, use type-mappers to map between the two. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.ResolveNameFromType(System.Type)"> <summary> Since the namespace configured for this service reference in Visual Studio is different from the one indicated in the server schema, use type-mappers to map between the two. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.BasicInfo"> <summary> There are no comments for BasicInfo in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.MailboxRecoverableItem"> <summary> There are no comments for MailboxRecoverableItem in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.Mailbox"> <summary> There are no comments for Mailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.MailboxAutoReplyConfiguration"> <summary> There are no comments for MailboxAutoReplyConfiguration in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.MailboxPlan"> <summary> There are no comments for MailboxPlan in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.CasMailbox"> <summary> There are no comments for CasMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.Recipient"> <summary> There are no comments for Recipient in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.RetentionPolicy"> <summary> There are no comments for RetentionPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.RoleAssignmentPolicy"> <summary> There are no comments for RoleAssignmentPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.AddressBookPolicy"> <summary> There are no comments for AddressBookPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.SharingPolicy"> <summary> There are no comments for SharingPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.User"> <summary> There are no comments for User in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.OutboundConnector"> <summary> There are no comments for OutboundConnector in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.InboundConnector"> <summary> There are no comments for InboundConnector in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.HistoricalSearch"> <summary> There are no comments for HistoricalSearch in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.CalendarProcessing"> <summary> There are no comments for CalendarProcessing in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.CmdletInfo"> <summary> There are no comments for CmdletInfo in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.Place"> <summary> There are no comments for Place in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.RoleDefinitions"> <summary> There are no comments for RoleDefinitions in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.ExchangeRoleGroupMember"> <summary> There are no comments for ExchangeRoleGroupMember in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.ExchangeRoleGroup"> <summary> There are no comments for ExchangeRoleGroup in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.RoleAssignments"> <summary> There are no comments for RoleAssignments in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.ExchangeManagementScope"> <summary> There are no comments for ExchangeManagementScope in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.SecurityPrincipal"> <summary> There are no comments for SecurityPrincipal in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.HostedContentFilterPolicyPresentation"> <summary> There are no comments for HostedContentFilterPolicyPresentation in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.AntiPhishPolicyPresentation"> <summary> There are no comments for AntiPhishPolicyPresentation in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.MalwareFilterPolicy"> <summary> There are no comments for MalwareFilterPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.SafeAttachmentPolicy"> <summary> There are no comments for SafeAttachmentPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.SafeLinksPolicyPresentation"> <summary> There are no comments for SafeLinksPolicyPresentation in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.HostedContentFilterRule"> <summary> There are no comments for HostedContentFilterRule in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.AntiPhishRule"> <summary> There are no comments for AntiPhishRule in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.MalwareFilterRule"> <summary> There are no comments for MalwareFilterRule in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.SafeAttachmentRule"> <summary> There are no comments for SafeAttachmentRule in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.SafeLinksRule"> <summary> There are no comments for SafeLinksRule in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.ConfigAnalyzerPolicyRecommendation"> <summary> There are no comments for ConfigAnalyzerPolicyRecommendation in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.AtpPolicyForO365Presentation"> <summary> There are no comments for AtpPolicyForO365Presentation in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.GraphConnectorGroupMember"> <summary> There are no comments for GraphConnectorGroupMember in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.GraphConnectorGroup"> <summary> There are no comments for GraphConnectorGroup in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.EligibleDistributionGroup"> <summary> There are no comments for EligibleDistributionGroup in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.DynamicDistributionGroup"> <summary> There are no comments for DynamicDistributionGroup in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.Divergence"> <summary> There are no comments for Divergence in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Container.DataInsight"> <summary> There are no comments for DataInsight in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToBasicInfo(Microsoft.Exchange.Management.AdminApiProvider.BasicInfo)"> <summary> There are no comments for BasicInfo in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToMailboxRecoverableItem(Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem)"> <summary> There are no comments for MailboxRecoverableItem in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToMailbox(Microsoft.Exchange.Management.AdminApiProvider.Mailbox)"> <summary> There are no comments for Mailbox in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToMailboxAutoReplyConfiguration(Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration)"> <summary> There are no comments for MailboxAutoReplyConfiguration in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToMailboxPlan(Microsoft.Exchange.Management.AdminApiProvider.MailboxPlan)"> <summary> There are no comments for MailboxPlan in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToCasMailbox(Microsoft.Exchange.Management.AdminApiProvider.CasMailbox)"> <summary> There are no comments for CasMailbox in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToRecipient(Microsoft.Exchange.Management.AdminApiProvider.Recipient)"> <summary> There are no comments for Recipient in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToRetentionPolicy(Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy)"> <summary> There are no comments for RetentionPolicy in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToRoleAssignmentPolicy(Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy)"> <summary> There are no comments for RoleAssignmentPolicy in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToAddressBookPolicy(Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy)"> <summary> There are no comments for AddressBookPolicy in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToSharingPolicy(Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy)"> <summary> There are no comments for SharingPolicy in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToUser(Microsoft.Exchange.Management.AdminApiProvider.User)"> <summary> There are no comments for User in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToOutboundConnector(Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector)"> <summary> There are no comments for OutboundConnector in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToInboundConnector(Microsoft.Exchange.Management.AdminApiProvider.InboundConnector)"> <summary> There are no comments for InboundConnector in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToHistoricalSearch(Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch)"> <summary> There are no comments for HistoricalSearch in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToCalendarProcessing(Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing)"> <summary> There are no comments for CalendarProcessing in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToCmdletInfo(Microsoft.Exchange.Management.AdminApiProvider.CmdletInfo)"> <summary> There are no comments for CmdletInfo in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToPlace(Microsoft.Exchange.Management.AdminApiProvider.Place)"> <summary> There are no comments for Place in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToRoleDefinitions(Microsoft.Exchange.Management.AdminApiProvider.RoleDefinitions)"> <summary> There are no comments for RoleDefinitions in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToExchangeRoleGroupMember(Microsoft.Exchange.Management.AdminApiProvider.ExchangeRoleGroupMember)"> <summary> There are no comments for ExchangeRoleGroupMember in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToExchangeRoleGroup(Microsoft.Exchange.Management.AdminApiProvider.ExchangeRoleGroup)"> <summary> There are no comments for ExchangeRoleGroup in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToRoleAssignments(Microsoft.Exchange.Management.AdminApiProvider.RoleAssignments)"> <summary> There are no comments for RoleAssignments in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToExchangeManagementScope(Microsoft.Exchange.Management.AdminApiProvider.ExchangeManagementScope)"> <summary> There are no comments for ExchangeManagementScope in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToSecurityPrincipal(Microsoft.Exchange.Management.AdminApiProvider.SecurityPrincipal)"> <summary> There are no comments for SecurityPrincipal in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToHostedContentFilterPolicyPresentation(Microsoft.Exchange.Management.AdminApiProvider.HostedContentFilterPolicyPresentation)"> <summary> There are no comments for HostedContentFilterPolicyPresentation in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToAntiPhishPolicyPresentation(Microsoft.Exchange.Management.AdminApiProvider.AntiPhishPolicyPresentation)"> <summary> There are no comments for AntiPhishPolicyPresentation in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToMalwareFilterPolicy(Microsoft.Exchange.Management.AdminApiProvider.MalwareFilterPolicy)"> <summary> There are no comments for MalwareFilterPolicy in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToSafeAttachmentPolicy(Microsoft.Exchange.Management.AdminApiProvider.SafeAttachmentPolicy)"> <summary> There are no comments for SafeAttachmentPolicy in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToSafeLinksPolicyPresentation(Microsoft.Exchange.Management.AdminApiProvider.SafeLinksPolicyPresentation)"> <summary> There are no comments for SafeLinksPolicyPresentation in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToHostedContentFilterRule(Microsoft.Exchange.Management.AdminApiProvider.HostedContentFilterRule)"> <summary> There are no comments for HostedContentFilterRule in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToAntiPhishRule(Microsoft.Exchange.Management.AdminApiProvider.AntiPhishRule)"> <summary> There are no comments for AntiPhishRule in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToMalwareFilterRule(Microsoft.Exchange.Management.AdminApiProvider.MalwareFilterRule)"> <summary> There are no comments for MalwareFilterRule in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToSafeAttachmentRule(Microsoft.Exchange.Management.AdminApiProvider.SafeAttachmentRule)"> <summary> There are no comments for SafeAttachmentRule in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToSafeLinksRule(Microsoft.Exchange.Management.AdminApiProvider.SafeLinksRule)"> <summary> There are no comments for SafeLinksRule in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToConfigAnalyzerPolicyRecommendation(Microsoft.Exchange.Management.AdminApiProvider.ConfigAnalyzerPolicyRecommendation)"> <summary> There are no comments for ConfigAnalyzerPolicyRecommendation in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToAtpPolicyForO365Presentation(Microsoft.Exchange.Management.AdminApiProvider.AtpPolicyForO365Presentation)"> <summary> There are no comments for AtpPolicyForO365Presentation in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToGraphConnectorGroupMember(Microsoft.Exchange.Management.AdminApiProvider.GraphConnectorGroupMember)"> <summary> There are no comments for GraphConnectorGroupMember in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToGraphConnectorGroup(Microsoft.Exchange.Management.AdminApiProvider.GraphConnectorGroup)"> <summary> There are no comments for GraphConnectorGroup in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToEligibleDistributionGroup(Microsoft.Exchange.Management.AdminApiProvider.EligibleDistributionGroup)"> <summary> There are no comments for EligibleDistributionGroup in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToDynamicDistributionGroup(Microsoft.Exchange.Management.AdminApiProvider.DynamicDistributionGroup)"> <summary> There are no comments for DynamicDistributionGroup in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToDivergence(Microsoft.Exchange.Management.AdminApiProvider.Divergence)"> <summary> There are no comments for Divergence in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.AddToDataInsight(Microsoft.Exchange.Management.AdminApiProvider.DataInsight)"> <summary> There are no comments for DataInsight in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.GetMobileDeviceStatisticsByIdentity(System.String)"> <summary> There are no comments for GetMobileDeviceStatisticsByIdentity in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.SearchMessageTrace(Microsoft.Exchange.Management.AdminApiProvider.GenericHashTable)"> <summary> There are no comments for SearchMessageTrace in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.SearchMessageTraceDetail(Microsoft.Exchange.Management.AdminApiProvider.GenericHashTable)"> <summary> There are no comments for SearchMessageTraceDetail in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.TorusTest"> <summary> There are no comments for TorusTest in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.Initialize"> <summary> There are no comments for Initialize in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Container.InvokeCommand(Microsoft.Exchange.Management.AdminApiProvider.CmdletInvokeInputType)"> <summary> There are no comments for InvokeCommand in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.ComplexEntry"> <summary> There are no comments for ComplexEntry in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ComplexEntry.ChangedProperties"> <summary> There are no comments for Property ChangedProperties in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.ComplexEntry.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.ComplexEntry.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.ByteArrayType"> <summary> There are no comments for ByteArrayType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.ByteArrayType.Data"> <summary> There are no comments for Property Data in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.StringFieldDeltaUpdateData"> <summary> There are no comments for StringFieldDeltaUpdateData in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.StringFieldDeltaUpdateData.Add"> <summary> There are no comments for Property Add in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.StringFieldDeltaUpdateData.Remove"> <summary> There are no comments for Property Remove in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemsQuery"> <summary> There are no comments for MailboxRecoverableItemsQuery in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemsQuery.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemsQuery.SubjectContains"> <summary> There are no comments for Property SubjectContains in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemsQuery.FilterItemType"> <summary> There are no comments for Property FilterItemType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemsQuery.FilterStartTime"> <summary> There are no comments for Property FilterStartTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemsQuery.FilterEndTime"> <summary> There are no comments for Property FilterEndTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemsQuery.EntryID"> <summary> There are no comments for Property EntryID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemsQuery.SourceFolder"> <summary> There are no comments for Property SourceFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemsQuery.LastParentFolderID"> <summary> There are no comments for Property LastParentFolderID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemsQuery.ResultSize"> <summary> There are no comments for Property ResultSize in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.BasicInfoSingle"> <summary> There are no comments for BasicInfoSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicInfoSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new BasicInfoSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicInfoSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new BasicInfoSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicInfoSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.BasicInfo})"> <summary> Initialize a new BasicInfoSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.BasicInfo"> <summary> There are no comments for BasicInfo in the schema. </summary> <KeyProperties> PropertyName </KeyProperties> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicInfo.CreateBasicInfo(System.String)"> <summary> Create a new BasicInfo object. </summary> <param name="propertyName">Initial value of PropertyName.</param> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.BasicInfo.PropertyName"> <summary> There are no comments for Property PropertyName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.BasicInfo.PropertyValue"> <summary> There are no comments for Property PropertyValue in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.BasicInfo.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.BasicInfo.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermissionSingle"> <summary> There are no comments for MailboxPermissionSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermissionSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new MailboxPermissionSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermissionSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new MailboxPermissionSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermissionSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.MailboxPermission})"> <summary> Initialize a new MailboxPermissionSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermission"> <summary> There are no comments for MailboxPermission in the schema. </summary> <KeyProperties> PermissionId </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermission.PermissionId"> <summary> There are no comments for Property PermissionId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermission.MailboxIdentity"> <summary> There are no comments for Property MailboxIdentity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermission.User"> <summary> There are no comments for Property User in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermission.IsOwner"> <summary> There are no comments for Property IsOwner in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermission.PermissionList"> <summary> There are no comments for Property PermissionList in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermission.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermission.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermissionInfo"> <summary> There are no comments for MailboxPermissionInfo in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermissionInfo.AccessRights"> <summary> There are no comments for Property AccessRights in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermissionInfo.IsInherited"> <summary> There are no comments for Property IsInherited in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermissionInfo.Deny"> <summary> There are no comments for Property Deny in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPermissionInfo.InheritanceType"> <summary> There are no comments for Property InheritanceType in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermissionSingle"> <summary> There are no comments for MailboxFolderPermissionSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermissionSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new MailboxFolderPermissionSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermissionSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new MailboxFolderPermissionSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermissionSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission})"> <summary> Initialize a new MailboxFolderPermissionSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission"> <summary> There are no comments for MailboxFolderPermission in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission.MailboxFolderIdentity"> <summary> There are no comments for Property MailboxFolderIdentity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission.FolderName"> <summary> There are no comments for Property FolderName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission.User"> <summary> There are no comments for Property User in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission.MailboxFolderUser"> <summary> There are no comments for Property MailboxFolderUser in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission.AccessRights"> <summary> There are no comments for Property AccessRights in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission.SharingPermissionFlags"> <summary> There are no comments for Property SharingPermissionFlags in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderPermission.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderUserID"> <summary> There are no comments for MailboxFolderUserID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderUserID.UserPrincipalName"> <summary> There are no comments for Property UserPrincipalName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderUserID.UserType"> <summary> There are no comments for Property UserType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderUserID.DisplayName"> <summary> There are no comments for Property DisplayName in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderSingle"> <summary> There are no comments for MailboxFolderSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new MailboxFolderSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new MailboxFolderSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.MailboxFolder})"> <summary> Initialize a new MailboxFolderSingle object. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderSingle.MailboxFolderPermission"> <summary> There are no comments for MailboxFolderPermission in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolder"> <summary> There are no comments for MailboxFolder in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolder.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolder.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolder.MailboxFolderPermission"> <summary> There are no comments for Property MailboxFolderPermission in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolder.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolder.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfigurationSingle"> <summary> There are no comments for MailboxRegionalConfigurationSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfigurationSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new MailboxRegionalConfigurationSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfigurationSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new MailboxRegionalConfigurationSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfigurationSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfiguration})"> <summary> Initialize a new MailboxRegionalConfigurationSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfiguration"> <summary> There are no comments for MailboxRegionalConfiguration in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfiguration.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfiguration.DateFormat"> <summary> There are no comments for Property DateFormat in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfiguration.Language"> <summary> There are no comments for Property Language in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfiguration.TimeFormat"> <summary> There are no comments for Property TimeFormat in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfiguration.TimeZone"> <summary> There are no comments for Property TimeZone in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfiguration.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfiguration.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceSingle"> <summary> There are no comments for MobileDeviceSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new MobileDeviceSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new MobileDeviceSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.MobileDevice})"> <summary> Initialize a new MobileDeviceSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MobileDevice"> <summary> There are no comments for MobileDevice in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDevice.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.MobileDevice.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MobileDevice.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics"> <summary> There are no comments for MobileDeviceStatistics in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.AccountOnlyDeviceWipeAckTime"> <summary> There are no comments for Property AccountOnlyDeviceWipeAckTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.AccountOnlyDeviceWipeRequestTime"> <summary> There are no comments for Property AccountOnlyDeviceWipeRequestTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.AccountOnlyDeviceWipeSentTime"> <summary> There are no comments for Property AccountOnlyDeviceWipeSentTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.ClientType"> <summary> There are no comments for Property ClientType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.ClientVersion"> <summary> There are no comments for Property ClientVersion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceAccessControlRule"> <summary> There are no comments for Property DeviceAccessControlRule in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceAccessState"> <summary> There are no comments for Property DeviceAccessState in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceAccessStateReason"> <summary> There are no comments for Property DeviceAccessStateReason in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceEnableOutboundSMS"> <summary> There are no comments for Property DeviceEnableOutboundSMS in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceFriendlyName"> <summary> There are no comments for Property DeviceFriendlyName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceID"> <summary> There are no comments for Property DeviceID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceImei"> <summary> There are no comments for Property DeviceImei in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceMobileOperator"> <summary> There are no comments for Property DeviceMobileOperator in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceModel"> <summary> There are no comments for Property DeviceModel in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceOS"> <summary> There are no comments for Property DeviceOS in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceOSLanguage"> <summary> There are no comments for Property DeviceOSLanguage in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DevicePhoneNumber"> <summary> There are no comments for Property DevicePhoneNumber in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DevicePolicyApplicationStatus"> <summary> There are no comments for Property DevicePolicyApplicationStatus in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DevicePolicyApplied"> <summary> There are no comments for Property DevicePolicyApplied in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceType"> <summary> There are no comments for Property DeviceType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceUserAgent"> <summary> There are no comments for Property DeviceUserAgent in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceWipeAckTime"> <summary> There are no comments for Property DeviceWipeAckTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceWipeRequestTime"> <summary> There are no comments for Property DeviceWipeRequestTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.DeviceWipeSentTime"> <summary> There are no comments for Property DeviceWipeSentTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.FirstSyncTime"> <summary> There are no comments for Property FirstSyncTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.Guid"> <summary> There are no comments for Property Guid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.IsRemoteWipeSupported"> <summary> There are no comments for Property IsRemoteWipeSupported in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.LastAccountOnlyDeviceWipeRequestor"> <summary> There are no comments for Property LastAccountOnlyDeviceWipeRequestor in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.LastDeviceWipeRequestor"> <summary> There are no comments for Property LastDeviceWipeRequestor in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.LastPingHeartbeat"> <summary> There are no comments for Property LastPingHeartbeat in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.LastPolicyUpdateTime"> <summary> There are no comments for Property LastPolicyUpdateTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.LastSuccessSync"> <summary> There are no comments for Property LastSuccessSync in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.LastSyncAttemptTime"> <summary> There are no comments for Property LastSyncAttemptTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.MailboxLogReport"> <summary> There are no comments for Property MailboxLogReport in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.NumberOfFoldersSynced"> <summary> There are no comments for Property NumberOfFoldersSynced in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.Status"> <summary> There are no comments for Property Status in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.StatusNote"> <summary> There are no comments for Property StatusNote in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MobileDeviceStatistics.SyncStateUpgradeTime"> <summary> There are no comments for Property SyncStateUpgradeTime in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemSingle"> <summary> There are no comments for MailboxRecoverableItemSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new MailboxRecoverableItemSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new MailboxRecoverableItemSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItemSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem})"> <summary> Initialize a new MailboxRecoverableItemSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem"> <summary> There are no comments for MailboxRecoverableItem in the schema. </summary> <KeyProperties> EntryID </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem.MailboxIdentity"> <summary> There are no comments for Property MailboxIdentity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem.ItemClass"> <summary> There are no comments for Property ItemClass in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem.Subject"> <summary> There are no comments for Property Subject in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem.EntryID"> <summary> There are no comments for Property EntryID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem.SourceFolder"> <summary> There are no comments for Property SourceFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem.LastModifiedTime"> <summary> There are no comments for Property LastModifiedTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem.LastParentPath"> <summary> There are no comments for Property LastParentPath in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxRecoverableItem.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxSingle"> <summary> There are no comments for MailboxSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new MailboxSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new MailboxSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.Mailbox})"> <summary> Initialize a new MailboxSingle object. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxSingle.MailboxPermission"> <summary> There are no comments for MailboxPermission in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxSingle.MailboxFolder"> <summary> There are no comments for MailboxFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxSingle.MobileDevice"> <summary> There are no comments for MobileDevice in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxSingle.MailboxRecoverableItem"> <summary> There are no comments for MailboxRecoverableItem in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxSingle.MailboxRegionalConfiguration"> <summary> There are no comments for MailboxRegionalConfiguration in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Mailbox"> <summary> There are no comments for Mailbox in the schema. </summary> <KeyProperties> ObjectKey </KeyProperties> <summary> Class Mailbox. <para> Adding partial class here because we need to add PropertyChanged delegate when object is created. PropertyChanged delegate keeps track of all changed properties in this object. </para> <para> This is not autogenerated. </para> </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CreateMailbox(Microsoft.Exchange.Management.AdminApiProvider.MailboxRegionalConfiguration)"> <summary> Create a new Mailbox object. </summary> <param name="mailboxRegionalConfiguration">Initial value of MailboxRegionalConfiguration.</param> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ObjectKey"> <summary> There are no comments for Property ObjectKey in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExternalDirectoryObjectId"> <summary> There are no comments for Property ExternalDirectoryObjectId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.Database"> <summary> There are no comments for Property Database in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DatabaseGuid"> <summary> There are no comments for Property DatabaseGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxProvisioningConstraint"> <summary> There are no comments for Property MailboxProvisioningConstraint in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsMonitoringMailbox"> <summary> There are no comments for Property IsMonitoringMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxRegion"> <summary> There are no comments for Property MailboxRegion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxRegionLastUpdateTime"> <summary> There are no comments for Property MailboxRegionLastUpdateTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MessageRecallProcessingEnabled"> <summary> There are no comments for Property MessageRecallProcessingEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MessageCopyForSMTPClientSubmissionEnabled"> <summary> There are no comments for Property MessageCopyForSMTPClientSubmissionEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MessageCopyForSentAsEnabled"> <summary> There are no comments for Property MessageCopyForSentAsEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MessageCopyForSendOnBehalfEnabled"> <summary> There are no comments for Property MessageCopyForSendOnBehalfEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxProvisioningPreferences"> <summary> There are no comments for Property MailboxProvisioningPreferences in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UseDatabaseRetentionDefaults"> <summary> There are no comments for Property UseDatabaseRetentionDefaults in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RetainDeletedItemsUntilBackup"> <summary> There are no comments for Property RetainDeletedItemsUntilBackup in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DeliverToMailboxAndForward"> <summary> There are no comments for Property DeliverToMailboxAndForward in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsExcludedFromServingHierarchy"> <summary> There are no comments for Property IsExcludedFromServingHierarchy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsHierarchyReady"> <summary> There are no comments for Property IsHierarchyReady in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsHierarchySyncEnabled"> <summary> There are no comments for Property IsHierarchySyncEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.HasSnackyAppData"> <summary> There are no comments for Property HasSnackyAppData in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.LitigationHoldEnabled"> <summary> There are no comments for Property LitigationHoldEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SingleItemRecoveryEnabled"> <summary> There are no comments for Property SingleItemRecoveryEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RetentionHoldEnabled"> <summary> There are no comments for Property RetentionHoldEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.EndDateForRetentionHold"> <summary> There are no comments for Property EndDateForRetentionHold in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.StartDateForRetentionHold"> <summary> There are no comments for Property StartDateForRetentionHold in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RetentionComment"> <summary> There are no comments for Property RetentionComment in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RetentionUrl"> <summary> There are no comments for Property RetentionUrl in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.LitigationHoldDate"> <summary> There are no comments for Property LitigationHoldDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.LitigationHoldOwner"> <summary> There are no comments for Property LitigationHoldOwner in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ElcProcessingDisabled"> <summary> There are no comments for Property ElcProcessingDisabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ComplianceTagHoldApplied"> <summary> There are no comments for Property ComplianceTagHoldApplied in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.WasInactiveMailbox"> <summary> There are no comments for Property WasInactiveMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DelayHoldApplied"> <summary> There are no comments for Property DelayHoldApplied in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.InactiveMailboxRetireTime"> <summary> There are no comments for Property InactiveMailboxRetireTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.OrphanSoftDeleteTrackingTime"> <summary> There are no comments for Property OrphanSoftDeleteTrackingTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.LitigationHoldDuration"> <summary> There are no comments for Property LitigationHoldDuration in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ManagedFolderMailboxPolicy"> <summary> There are no comments for Property ManagedFolderMailboxPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RetentionPolicy"> <summary> There are no comments for Property RetentionPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AddressBookPolicy"> <summary> There are no comments for Property AddressBookPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CalendarRepairDisabled"> <summary> There are no comments for Property CalendarRepairDisabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExchangeGuid"> <summary> There are no comments for Property ExchangeGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxContainerGuid"> <summary> There are no comments for Property MailboxContainerGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UnifiedMailbox"> <summary> There are no comments for Property UnifiedMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxLocations"> <summary> There are no comments for Property MailboxLocations in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AggregatedMailboxGuids"> <summary> There are no comments for Property AggregatedMailboxGuids in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExchangeSecurityDescriptor"> <summary> There are no comments for Property ExchangeSecurityDescriptor in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExchangeUserAccountControl"> <summary> There are no comments for Property ExchangeUserAccountControl in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MessageTrackingReadStatusEnabled"> <summary> There are no comments for Property MessageTrackingReadStatusEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExternalOofOptions"> <summary> There are no comments for Property ExternalOofOptions in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ForwardingAddress"> <summary> There are no comments for Property ForwardingAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ForwardingSmtpAddress"> <summary> There are no comments for Property ForwardingSmtpAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RetainDeletedItemsFor"> <summary> There are no comments for Property RetainDeletedItemsFor in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsMailboxEnabled"> <summary> There are no comments for Property IsMailboxEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.Languages"> <summary> There are no comments for Property Languages in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.OfflineAddressBook"> <summary> There are no comments for Property OfflineAddressBook in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ProhibitSendQuota"> <summary> There are no comments for Property ProhibitSendQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ProhibitSendReceiveQuota"> <summary> There are no comments for Property ProhibitSendReceiveQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RecoverableItemsQuota"> <summary> There are no comments for Property RecoverableItemsQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RecoverableItemsWarningQuota"> <summary> There are no comments for Property RecoverableItemsWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CalendarLoggingQuota"> <summary> There are no comments for Property CalendarLoggingQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DowngradeHighPriorityMessagesEnabled"> <summary> There are no comments for Property DowngradeHighPriorityMessagesEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ProtocolSettings"> <summary> There are no comments for Property ProtocolSettings in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RecipientLimits"> <summary> There are no comments for Property RecipientLimits in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ImListMigrationCompleted"> <summary> There are no comments for Property ImListMigrationCompleted in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SiloName"> <summary> There are no comments for Property SiloName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsResource"> <summary> There are no comments for Property IsResource in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsLinked"> <summary> There are no comments for Property IsLinked in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsShared"> <summary> There are no comments for Property IsShared in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsRootPublicFolderMailbox"> <summary> There are no comments for Property IsRootPublicFolderMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.LinkedMasterAccount"> <summary> There are no comments for Property LinkedMasterAccount in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ResetPasswordOnNextLogon"> <summary> There are no comments for Property ResetPasswordOnNextLogon in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ResourceCapacity"> <summary> There are no comments for Property ResourceCapacity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ResourceCustom"> <summary> There are no comments for Property ResourceCustom in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ResourceType"> <summary> There are no comments for Property ResourceType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RoomMailboxAccountEnabled"> <summary> There are no comments for Property RoomMailboxAccountEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SamAccountName"> <summary> There are no comments for Property SamAccountName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SCLDeleteThreshold"> <summary> There are no comments for Property SCLDeleteThreshold in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SCLDeleteEnabled"> <summary> There are no comments for Property SCLDeleteEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SCLRejectThreshold"> <summary> There are no comments for Property SCLRejectThreshold in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SCLRejectEnabled"> <summary> There are no comments for Property SCLRejectEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SCLQuarantineThreshold"> <summary> There are no comments for Property SCLQuarantineThreshold in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SCLQuarantineEnabled"> <summary> There are no comments for Property SCLQuarantineEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SCLJunkThreshold"> <summary> There are no comments for Property SCLJunkThreshold in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SCLJunkEnabled"> <summary> There are no comments for Property SCLJunkEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AntispamBypassEnabled"> <summary> There are no comments for Property AntispamBypassEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ServerLegacyDN"> <summary> There are no comments for Property ServerLegacyDN in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UseDatabaseQuotaDefaults"> <summary> There are no comments for Property UseDatabaseQuotaDefaults in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IssueWarningQuota"> <summary> There are no comments for Property IssueWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RulesQuota"> <summary> There are no comments for Property RulesQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.Office"> <summary> There are no comments for Property Office in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UserPrincipalName"> <summary> There are no comments for Property UserPrincipalName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UMEnabled"> <summary> There are no comments for Property UMEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MaxSafeSenders"> <summary> There are no comments for Property MaxSafeSenders in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MaxBlockedSenders"> <summary> There are no comments for Property MaxBlockedSenders in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.NetID"> <summary> There are no comments for Property NetID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ReconciliationId"> <summary> There are no comments for Property ReconciliationId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.WindowsLiveID"> <summary> There are no comments for Property WindowsLiveID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MicrosoftOnlineServicesID"> <summary> There are no comments for Property MicrosoftOnlineServicesID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ThrottlingPolicy"> <summary> There are no comments for Property ThrottlingPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RoleAssignmentPolicy"> <summary> There are no comments for Property RoleAssignmentPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DefaultPublicFolderMailbox"> <summary> There are no comments for Property DefaultPublicFolderMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.EffectivePublicFolderMailbox"> <summary> There are no comments for Property EffectivePublicFolderMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SharingPolicy"> <summary> There are no comments for Property SharingPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RemoteAccountPolicy"> <summary> There are no comments for Property RemoteAccountPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxPlan"> <summary> There are no comments for Property MailboxPlan in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArchiveDatabase"> <summary> There are no comments for Property ArchiveDatabase in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArchiveDatabaseGuid"> <summary> There are no comments for Property ArchiveDatabaseGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArchiveGuid"> <summary> There are no comments for Property ArchiveGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArchiveName"> <summary> There are no comments for Property ArchiveName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.JournalArchiveAddress"> <summary> There are no comments for Property JournalArchiveAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArchiveQuota"> <summary> There are no comments for Property ArchiveQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArchiveWarningQuota"> <summary> There are no comments for Property ArchiveWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArchiveDomain"> <summary> There are no comments for Property ArchiveDomain in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArchiveStatus"> <summary> There are no comments for Property ArchiveStatus in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArchiveState"> <summary> There are no comments for Property ArchiveState in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AutoExpandingArchiveEnabled"> <summary> There are no comments for Property AutoExpandingArchiveEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DisabledMailboxLocations"> <summary> There are no comments for Property DisabledMailboxLocations in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RemoteRecipientType"> <summary> There are no comments for Property RemoteRecipientType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DisabledArchiveDatabase"> <summary> There are no comments for Property DisabledArchiveDatabase in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DisabledArchiveGuid"> <summary> There are no comments for Property DisabledArchiveGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.QueryBaseDN"> <summary> There are no comments for Property QueryBaseDN in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.QueryBaseDNRestrictionEnabled"> <summary> There are no comments for Property QueryBaseDNRestrictionEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxMoveTargetMDB"> <summary> There are no comments for Property MailboxMoveTargetMDB in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxMoveSourceMDB"> <summary> There are no comments for Property MailboxMoveSourceMDB in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxMoveFlags"> <summary> There are no comments for Property MailboxMoveFlags in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxMoveRemoteHostName"> <summary> There are no comments for Property MailboxMoveRemoteHostName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxMoveBatchName"> <summary> There are no comments for Property MailboxMoveBatchName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxMoveStatus"> <summary> There are no comments for Property MailboxMoveStatus in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxRelease"> <summary> There are no comments for Property MailboxRelease in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArchiveRelease"> <summary> There are no comments for Property ArchiveRelease in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsPersonToPersonTextMessagingEnabled"> <summary> There are no comments for Property IsPersonToPersonTextMessagingEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsMachineToPersonTextMessagingEnabled"> <summary> There are no comments for Property IsMachineToPersonTextMessagingEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UserSMimeCertificate"> <summary> There are no comments for Property UserSMimeCertificate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UserCertificate"> <summary> There are no comments for Property UserCertificate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CalendarVersionStoreDisabled"> <summary> There are no comments for Property CalendarVersionStoreDisabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ImmutableId"> <summary> There are no comments for Property ImmutableId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.PersistedCapabilities"> <summary> There are no comments for Property PersistedCapabilities in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SKUAssigned"> <summary> There are no comments for Property SKUAssigned in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AuditEnabled"> <summary> There are no comments for Property AuditEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AuditLogAgeLimit"> <summary> There are no comments for Property AuditLogAgeLimit in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AuditAdmin"> <summary> There are no comments for Property AuditAdmin in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AuditDelegate"> <summary> There are no comments for Property AuditDelegate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AuditOwner"> <summary> There are no comments for Property AuditOwner in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DefaultAuditSet"> <summary> There are no comments for Property DefaultAuditSet in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.WhenMailboxCreated"> <summary> There are no comments for Property WhenMailboxCreated in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SourceAnchor"> <summary> There are no comments for Property SourceAnchor in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UsageLocation"> <summary> There are no comments for Property UsageLocation in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsSoftDeletedByRemove"> <summary> There are no comments for Property IsSoftDeletedByRemove in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsSoftDeletedByDisable"> <summary> There are no comments for Property IsSoftDeletedByDisable in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsInactiveMailbox"> <summary> There are no comments for Property IsInactiveMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IncludeInGarbageCollection"> <summary> There are no comments for Property IncludeInGarbageCollection in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.WhenSoftDeleted"> <summary> There are no comments for Property WhenSoftDeleted in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.InPlaceHolds"> <summary> There are no comments for Property InPlaceHolds in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.GeneratedOfflineAddressBooks"> <summary> There are no comments for Property GeneratedOfflineAddressBooks in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AccountDisabled"> <summary> There are no comments for Property AccountDisabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.StsRefreshTokensValidFrom"> <summary> There are no comments for Property StsRefreshTokensValidFrom in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.NonCompliantDevices"> <summary> There are no comments for Property NonCompliantDevices in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DataEncryptionPolicy"> <summary> There are no comments for Property DataEncryptionPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.Extensions"> <summary> There are no comments for Property Extensions in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.HasPicture"> <summary> There are no comments for Property HasPicture in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.HasSpokenName"> <summary> There are no comments for Property HasSpokenName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.IsDirSynced"> <summary> There are no comments for Property IsDirSynced in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AcceptMessagesOnlyFrom"> <summary> There are no comments for Property AcceptMessagesOnlyFrom in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AcceptMessagesOnlyFromDLMembers"> <summary> There are no comments for Property AcceptMessagesOnlyFromDLMembers in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AcceptMessagesOnlyFromSendersOrMembers"> <summary> There are no comments for Property AcceptMessagesOnlyFromSendersOrMembers in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AddressListMembership"> <summary> There are no comments for Property AddressListMembership in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AdministrativeUnits"> <summary> There are no comments for Property AdministrativeUnits in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.Alias"> <summary> There are no comments for Property Alias in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ArbitrationMailbox"> <summary> There are no comments for Property ArbitrationMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.BypassModerationFromSendersOrMembers"> <summary> There are no comments for Property BypassModerationFromSendersOrMembers in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.OrganizationalUnit"> <summary> There are no comments for Property OrganizationalUnit in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute1"> <summary> There are no comments for Property CustomAttribute1 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute10"> <summary> There are no comments for Property CustomAttribute10 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute11"> <summary> There are no comments for Property CustomAttribute11 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute12"> <summary> There are no comments for Property CustomAttribute12 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute13"> <summary> There are no comments for Property CustomAttribute13 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute14"> <summary> There are no comments for Property CustomAttribute14 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute15"> <summary> There are no comments for Property CustomAttribute15 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute2"> <summary> There are no comments for Property CustomAttribute2 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute3"> <summary> There are no comments for Property CustomAttribute3 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute4"> <summary> There are no comments for Property CustomAttribute4 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute5"> <summary> There are no comments for Property CustomAttribute5 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute6"> <summary> There are no comments for Property CustomAttribute6 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute7"> <summary> There are no comments for Property CustomAttribute7 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute8"> <summary> There are no comments for Property CustomAttribute8 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CustomAttribute9"> <summary> There are no comments for Property CustomAttribute9 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExtensionCustomAttribute1"> <summary> There are no comments for Property ExtensionCustomAttribute1 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExtensionCustomAttribute2"> <summary> There are no comments for Property ExtensionCustomAttribute2 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExtensionCustomAttribute3"> <summary> There are no comments for Property ExtensionCustomAttribute3 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExtensionCustomAttribute4"> <summary> There are no comments for Property ExtensionCustomAttribute4 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExtensionCustomAttribute5"> <summary> There are no comments for Property ExtensionCustomAttribute5 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DisplayName"> <summary> There are no comments for Property DisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.EmailAddresses"> <summary> There are no comments for Property EmailAddresses in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.GrantSendOnBehalfTo"> <summary> There are no comments for Property GrantSendOnBehalfTo in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.HiddenFromAddressListsEnabled"> <summary> There are no comments for Property HiddenFromAddressListsEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.LastExchangeChangedTime"> <summary> There are no comments for Property LastExchangeChangedTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.LegacyExchangeDN"> <summary> There are no comments for Property LegacyExchangeDN in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MaxSendSize"> <summary> There are no comments for Property MaxSendSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MaxReceiveSize"> <summary> There are no comments for Property MaxReceiveSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ModeratedBy"> <summary> There are no comments for Property ModeratedBy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ModerationEnabled"> <summary> There are no comments for Property ModerationEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.PoliciesIncluded"> <summary> There are no comments for Property PoliciesIncluded in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.PoliciesExcluded"> <summary> There are no comments for Property PoliciesExcluded in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.EmailAddressPolicyEnabled"> <summary> There are no comments for Property EmailAddressPolicyEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.PrimarySmtpAddress"> <summary> There are no comments for Property PrimarySmtpAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RecipientType"> <summary> There are no comments for Property RecipientType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RecipientTypeDetails"> <summary> There are no comments for Property RecipientTypeDetails in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RejectMessagesFrom"> <summary> There are no comments for Property RejectMessagesFrom in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RejectMessagesFromDLMembers"> <summary> There are no comments for Property RejectMessagesFromDLMembers in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RejectMessagesFromSendersOrMembers"> <summary> There are no comments for Property RejectMessagesFromSendersOrMembers in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RequireSenderAuthenticationEnabled"> <summary> There are no comments for Property RequireSenderAuthenticationEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SimpleDisplayName"> <summary> There are no comments for Property SimpleDisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SendModerationNotifications"> <summary> There are no comments for Property SendModerationNotifications in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UMDtmfMap"> <summary> There are no comments for Property UMDtmfMap in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.WindowsEmailAddress"> <summary> There are no comments for Property WindowsEmailAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailTip"> <summary> There are no comments for Property MailTip in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailTipTranslations"> <summary> There are no comments for Property MailTipTranslations in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.Id"> <summary> There are no comments for Property Id in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExchangeVersion"> <summary> There are no comments for Property ExchangeVersion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DistinguishedName"> <summary> There are no comments for Property DistinguishedName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ObjectCategory"> <summary> There are no comments for Property ObjectCategory in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ObjectClass"> <summary> There are no comments for Property ObjectClass in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.WhenChanged"> <summary> There are no comments for Property WhenChanged in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.WhenCreated"> <summary> There are no comments for Property WhenCreated in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.WhenChangedUTC"> <summary> There are no comments for Property WhenChangedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.WhenCreatedUTC"> <summary> There are no comments for Property WhenCreatedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExchangeObjectId"> <summary> There are no comments for Property ExchangeObjectId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.OrganizationId"> <summary> There are no comments for Property OrganizationId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.Guid"> <summary> There are no comments for Property Guid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ApplyMandatoryProperties"> <summary> There are no comments for Property ApplyMandatoryProperties in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.InactiveMailbox"> <summary> There are no comments for Property InactiveMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.PublicFolder"> <summary> There are no comments for Property PublicFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RecalculateInactiveMailbox"> <summary> There are no comments for Property RecalculateInactiveMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RemoveDelayHoldApplied"> <summary> There are no comments for Property RemoveDelayHoldApplied in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RemoveDelayReleaseHoldApplied"> <summary> There are no comments for Property RemoveDelayReleaseHoldApplied in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RemoveDisabledArchive"> <summary> There are no comments for Property RemoveDisabledArchive in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RemoveMailboxProvisioningConstraint"> <summary> There are no comments for Property RemoveMailboxProvisioningConstraint in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SecondaryAddress"> <summary> There are no comments for Property SecondaryAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.SecondaryDialPlan"> <summary> There are no comments for Property SecondaryDialPlan in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.Type"> <summary> There are no comments for Property Type in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UpdateEnforcedTimestamp"> <summary> There are no comments for Property UpdateEnforcedTimestamp in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.EnforcedTimestamps"> <summary> There are no comments for Property EnforcedTimestamps in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.CreateDTMFMap"> <summary> There are no comments for Property CreateDTMFMap in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.EnableRoomMailboxAccount"> <summary> There are no comments for Property EnableRoomMailboxAccount in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExcludeFromAllOrgHolds"> <summary> There are no comments for Property ExcludeFromAllOrgHolds in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ExcludeFromOrgHolds"> <summary> There are no comments for Property ExcludeFromOrgHolds in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.RemoveOrphanedHolds"> <summary> There are no comments for Property RemoveOrphanedHolds in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.DeltaUpdates"> <summary> There are no comments for Property DeltaUpdates in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxPermission"> <summary> There are no comments for Property MailboxPermission in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxFolder"> <summary> There are no comments for Property MailboxFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MobileDevice"> <summary> There are no comments for Property MobileDevice in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxRecoverableItem"> <summary> There are no comments for Property MailboxRecoverableItem in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.MailboxRegionalConfiguration"> <summary> There are no comments for Property MailboxRegionalConfiguration in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.GetMailboxStatistics"> <summary> There are no comments for GetMailboxStatistics in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.UpdateMailboxArchive(System.Boolean)"> <summary> There are no comments for UpdateMailboxArchive in the schema. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ChangedProperties"> <summary> List to capture all changed properties. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.ChangedPropertiesToIgnore"> <summary> List to capture all changed properties which need to ignore. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.#ctor"> <summary> Constructor will add property change delegate. This delegate will capture all changed properties in the model object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Mailbox.AddPropertyToChangedPropertiesSet(System.String)"> <summary> Helper function to add given property name to changed properties set. </summary> <param name="propertyName">Property name to be added to set.</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.OpenComplexEntry"> <summary> There are no comments for OpenComplexEntry in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.OpenComplexEntry.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.OpenComplexEntry.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.GenericHashTable"> <summary> There are no comments for GenericHashTable in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics"> <summary> There are no comments for MailboxStatistics in the schema. </summary> <summary> Class Mailbox. <para> Adding partial class here because we need to add PropertyChanged delegate when object is created. PropertyChanged delegate keeps track of all changed properties in this object. </para> <para> This is not autogenerated. </para> </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.DisplayName"> <summary> There are no comments for Property DisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.ExternalDirectoryOrganizationId"> <summary> There are no comments for Property ExternalDirectoryOrganizationId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.LastLoggedOnUserAccount"> <summary> There are no comments for Property LastLoggedOnUserAccount in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.LastLogoffTime"> <summary> There are no comments for Property LastLogoffTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.LastLogonTime"> <summary> There are no comments for Property LastLogonTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.StorageLimitStatus"> <summary> There are no comments for Property StorageLimitStatus in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.SystemMessageSize"> <summary> There are no comments for Property SystemMessageSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.SystemMessageSizeWarningQuota"> <summary> There are no comments for Property SystemMessageSizeWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.SystemMessageSizeShutoffQuota"> <summary> There are no comments for Property SystemMessageSizeShutoffQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.SystemMessageCount"> <summary> There are no comments for Property SystemMessageCount in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.DisconnectDate"> <summary> There are no comments for Property DisconnectDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.DisconnectReason"> <summary> There are no comments for Property DisconnectReason in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.LegacyDN"> <summary> There are no comments for Property LegacyDN in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.OwnerADGuid"> <summary> There are no comments for Property OwnerADGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.MailboxType"> <summary> There are no comments for Property MailboxType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.MailboxTypeDetail"> <summary> There are no comments for Property MailboxTypeDetail in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.ServerName"> <summary> There are no comments for Property ServerName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.DatabaseName"> <summary> There are no comments for Property DatabaseName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.IsDatabaseCopyActive"> <summary> There are no comments for Property IsDatabaseCopyActive in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.IsAbandonedMoveDestination"> <summary> There are no comments for Property IsAbandonedMoveDestination in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.MailboxGuid"> <summary> There are no comments for Property MailboxGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.IsArchiveMailbox"> <summary> There are no comments for Property IsArchiveMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.IsMoveDestination"> <summary> There are no comments for Property IsMoveDestination in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.ResourceUsageRollingAvgRop"> <summary> There are no comments for Property ResourceUsageRollingAvgRop in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.ResourceUsageRollingAvgDatabaseReads"> <summary> There are no comments for Property ResourceUsageRollingAvgDatabaseReads in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.ResourceUsageRollingClientTypes"> <summary> There are no comments for Property ResourceUsageRollingClientTypes in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.IsHighDensityShard"> <summary> There are no comments for Property IsHighDensityShard in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.NeedsToMove"> <summary> There are no comments for Property NeedsToMove in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.AssociatedItemCount"> <summary> There are no comments for Property AssociatedItemCount in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.DeletedItemCount"> <summary> There are no comments for Property DeletedItemCount in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.ItemCount"> <summary> There are no comments for Property ItemCount in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.TotalDeletedItemSize"> <summary> There are no comments for Property TotalDeletedItemSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.TotalItemSize"> <summary> There are no comments for Property TotalItemSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.MessageTableTotalSize"> <summary> There are no comments for Property MessageTableTotalSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.MessageTableAvailableSize"> <summary> There are no comments for Property MessageTableAvailableSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.AttachmentTableTotalSize"> <summary> There are no comments for Property AttachmentTableTotalSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.AttachmentTableAvailableSize"> <summary> There are no comments for Property AttachmentTableAvailableSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.OtherTablesTotalSize"> <summary> There are no comments for Property OtherTablesTotalSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.OtherTablesAvailableSize"> <summary> There are no comments for Property OtherTablesAvailableSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.TablesTotalSize"> <summary> There are no comments for Property TablesTotalSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.TablesTotalAvailableSize"> <summary> There are no comments for Property TablesTotalAvailableSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.MailboxMessagesPerFolderCountWarningQuota"> <summary> There are no comments for Property MailboxMessagesPerFolderCountWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.MailboxMessagesPerFolderCountReceiveQuota"> <summary> There are no comments for Property MailboxMessagesPerFolderCountReceiveQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.DumpsterMessagesPerFolderCountWarningQuota"> <summary> There are no comments for Property DumpsterMessagesPerFolderCountWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.DumpsterMessagesPerFolderCountReceiveQuota"> <summary> There are no comments for Property DumpsterMessagesPerFolderCountReceiveQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.FolderHierarchyChildrenCountWarningQuota"> <summary> There are no comments for Property FolderHierarchyChildrenCountWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.FolderHierarchyChildrenCountReceiveQuota"> <summary> There are no comments for Property FolderHierarchyChildrenCountReceiveQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.FolderHierarchyDepthWarningQuota"> <summary> There are no comments for Property FolderHierarchyDepthWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.FolderHierarchyDepthReceiveQuota"> <summary> There are no comments for Property FolderHierarchyDepthReceiveQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.FoldersCountWarningQuota"> <summary> There are no comments for Property FoldersCountWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.FoldersCountReceiveQuota"> <summary> There are no comments for Property FoldersCountReceiveQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.NamedPropertiesCountQuota"> <summary> There are no comments for Property NamedPropertiesCountQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.DatabaseIssueWarningQuota"> <summary> There are no comments for Property DatabaseIssueWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.DatabaseProhibitSendQuota"> <summary> There are no comments for Property DatabaseProhibitSendQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.DatabaseProhibitSendReceiveQuota"> <summary> There are no comments for Property DatabaseProhibitSendReceiveQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.IsQuarantined"> <summary> There are no comments for Property IsQuarantined in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.QuarantineClients"> <summary> There are no comments for Property QuarantineClients in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.QuarantineDescription"> <summary> There are no comments for Property QuarantineDescription in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.QuarantineLastCrash"> <summary> There are no comments for Property QuarantineLastCrash in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.QuarantineEnd"> <summary> There are no comments for Property QuarantineEnd in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.QuarantineFileVersion"> <summary> There are no comments for Property QuarantineFileVersion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.LastInteractionTime"> <summary> There are no comments for Property LastInteractionTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.LastUserActionTime"> <summary> There are no comments for Property LastUserActionTime in the schema. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.ChangedProperties"> <summary> List to capture all changed properties. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.#ctor"> <summary> Constructor will add property change delegate. This delegate will capture all changed properties in the model object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxStatistics.AddPropertyToChangedPropertiesSet(System.String)"> <summary> Helper function to add given property name to changed properties set. </summary> <param name="propertyName">Property name to be added to set.</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics"> <summary> There are no comments for MailboxFolderStatistics in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.SearchFolder"> <summary> There are no comments for Property SearchFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.CreationTime"> <summary> There are no comments for Property CreationTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.LastModifiedTime"> <summary> There are no comments for Property LastModifiedTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.FolderPath"> <summary> There are no comments for Property FolderPath in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.FolderId"> <summary> There are no comments for Property FolderId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.ContentFolder"> <summary> There are no comments for Property ContentFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.ContentMailboxGuid"> <summary> There are no comments for Property ContentMailboxGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.FolderType"> <summary> There are no comments for Property FolderType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.RawContentMailboxGuid"> <summary> There are no comments for Property RawContentMailboxGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.Movable"> <summary> There are no comments for Property Movable in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.RecoverableItemsFolder"> <summary> There are no comments for Property RecoverableItemsFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.AssociatedIPMFolderPath"> <summary> There are no comments for Property AssociatedIPMFolderPath in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.ContainerClass"> <summary> There are no comments for Property ContainerClass in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.Flags"> <summary> There are no comments for Property Flags in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.TargetQuota"> <summary> There are no comments for Property TargetQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.StorageQuota"> <summary> There are no comments for Property StorageQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.StorageWarningQuota"> <summary> There are no comments for Property StorageWarningQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.VisibleItemsInFolder"> <summary> There are no comments for Property VisibleItemsInFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.HiddenItemsInFolder"> <summary> There are no comments for Property HiddenItemsInFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.ItemsInFolder"> <summary> There are no comments for Property ItemsInFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.DeletedItemsInFolder"> <summary> There are no comments for Property DeletedItemsInFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.FolderSize"> <summary> There are no comments for Property FolderSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.ItemsInFolderAndSubfolders"> <summary> There are no comments for Property ItemsInFolderAndSubfolders in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.DeletedItemsInFolderAndSubfolders"> <summary> There are no comments for Property DeletedItemsInFolderAndSubfolders in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.FolderAndSubfolderSize"> <summary> There are no comments for Property FolderAndSubfolderSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.CurrentSchemaVersion"> <summary> There are no comments for Property CurrentSchemaVersion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.OldestItemReceivedDate"> <summary> There are no comments for Property OldestItemReceivedDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.NewestItemReceivedDate"> <summary> There are no comments for Property NewestItemReceivedDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.OldestDeletedItemReceivedDate"> <summary> There are no comments for Property OldestDeletedItemReceivedDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.NewestDeletedItemReceivedDate"> <summary> There are no comments for Property NewestDeletedItemReceivedDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.OldestItemLastModifiedDate"> <summary> There are no comments for Property OldestItemLastModifiedDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.NewestItemLastModifiedDate"> <summary> There are no comments for Property NewestItemLastModifiedDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.OldestDeletedItemLastModifiedDate"> <summary> There are no comments for Property OldestDeletedItemLastModifiedDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.NewestDeletedItemLastModifiedDate"> <summary> There are no comments for Property NewestDeletedItemLastModifiedDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.ManagedFolder"> <summary> There are no comments for Property ManagedFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.DeletePolicy"> <summary> There are no comments for Property DeletePolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.ArchivePolicy"> <summary> There are no comments for Property ArchivePolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.TopSubject"> <summary> There are no comments for Property TopSubject in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.TopSubjectSize"> <summary> There are no comments for Property TopSubjectSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.TopSubjectCount"> <summary> There are no comments for Property TopSubjectCount in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.TopSubjectClass"> <summary> There are no comments for Property TopSubjectClass in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.TopSubjectPath"> <summary> There are no comments for Property TopSubjectPath in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.TopSubjectReceivedTime"> <summary> There are no comments for Property TopSubjectReceivedTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.TopSubjectFrom"> <summary> There are no comments for Property TopSubjectFrom in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.TopClientInfoForSubject"> <summary> There are no comments for Property TopClientInfoForSubject in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.TopClientInfoCountForSubject"> <summary> There are no comments for Property TopClientInfoCountForSubject in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.SearchFolders"> <summary> There are no comments for Property SearchFolders in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.AuditAuxMailboxGuid"> <summary> There are no comments for Property AuditAuxMailboxGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.AuditFolderStubSize"> <summary> There are no comments for Property AuditFolderStubSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.LastMovedTimeStamp"> <summary> There are no comments for Property LastMovedTimeStamp in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.LowLatencyContainerId"> <summary> There are no comments for Property LowLatencyContainerId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.LowLatencyContainerFlags"> <summary> There are no comments for Property LowLatencyContainerFlags in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.LowLatencyContainerQuota"> <summary> There are no comments for Property LowLatencyContainerQuota in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.Diagnostics"> <summary> There are no comments for Property Diagnostics in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxFolderStatistics.DiagnosticInfo"> <summary> There are no comments for Property DiagnosticInfo in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfigurationSingle"> <summary> There are no comments for MailboxAutoReplyConfigurationSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfigurationSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new MailboxAutoReplyConfigurationSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfigurationSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new MailboxAutoReplyConfigurationSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfigurationSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration})"> <summary> Initialize a new MailboxAutoReplyConfigurationSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration"> <summary> There are no comments for MailboxAutoReplyConfiguration in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.AutoDeclineFutureRequestsWhenOOF"> <summary> There are no comments for Property AutoDeclineFutureRequestsWhenOOF in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.AutoReplyState"> <summary> There are no comments for Property AutoReplyState in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.CreateOOFEvent"> <summary> There are no comments for Property CreateOOFEvent in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.DeclineAllEventsForScheduledOOF"> <summary> There are no comments for Property DeclineAllEventsForScheduledOOF in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.DeclineEventsForScheduledOOF"> <summary> There are no comments for Property DeclineEventsForScheduledOOF in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.EventsToDeleteIDs"> <summary> There are no comments for Property EventsToDeleteIDs in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.EndTime"> <summary> There are no comments for Property EndTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.ExternalAudience"> <summary> There are no comments for Property ExternalAudience in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.ExternalMessage"> <summary> There are no comments for Property ExternalMessage in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.InternalMessage"> <summary> There are no comments for Property InternalMessage in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.DeclineMeetingMessage"> <summary> There are no comments for Property DeclineMeetingMessage in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.OOFEventSubject"> <summary> There are no comments for Property OOFEventSubject in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.Recipients"> <summary> There are no comments for Property Recipients in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.ReminderMinutesBeforeStart"> <summary> There are no comments for Property ReminderMinutesBeforeStart in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.ReminderMessage"> <summary> There are no comments for Property ReminderMessage in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.StartTime"> <summary> There are no comments for Property StartTime in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxAutoReplyConfiguration.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlanSingle"> <summary> There are no comments for MailboxPlanSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlanSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new MailboxPlanSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlanSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new MailboxPlanSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlanSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.MailboxPlan})"> <summary> Initialize a new MailboxPlanSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlan"> <summary> There are no comments for MailboxPlan in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlan.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlan.DisplayName"> <summary> There are no comments for Property DisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlan.MaxSendSize"> <summary> There are no comments for Property MaxSendSize in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlan.MaxReceiveSize"> <summary> There are no comments for Property MaxReceiveSize in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlan.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.MailboxPlan.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.CasMailboxSingle"> <summary> There are no comments for CasMailboxSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.CasMailboxSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new CasMailboxSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.CasMailboxSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new CasMailboxSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.CasMailboxSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.CasMailbox})"> <summary> Initialize a new CasMailboxSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox"> <summary> There are no comments for CasMailbox in the schema. </summary> <KeyProperties> ObjectKey </KeyProperties> <summary> Class CasMailbox. <para> Adding partial class here because we need to add PropertyChanged delegate when object is created. PropertyChanged delegate keeps track of all changed properties in this object. </para> <para> We need to create this type of class for every client model object. </para> <para> This is not autogenerated. </para> </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ObjectKey"> <summary> There are no comments for Property ObjectKey in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ExternalDirectoryObjectId"> <summary> There are no comments for Property ExternalDirectoryObjectId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.PrimarySmtpAddress"> <summary> There are no comments for Property PrimarySmtpAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.DisplayName"> <summary> There are no comments for Property DisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.Guid"> <summary> There are no comments for Property Guid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ServerLegacyDN"> <summary> There are no comments for Property ServerLegacyDN in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ExchangeVersion"> <summary> There are no comments for Property ExchangeVersion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.UniversalOutlookEnabled"> <summary> There are no comments for Property UniversalOutlookEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.OutlookMobileEnabled"> <summary> There are no comments for Property OutlookMobileEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.MacOutlookEnabled"> <summary> There are no comments for Property MacOutlookEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ECPEnabled"> <summary> There are no comments for Property ECPEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.OWAforDevicesEnabled"> <summary> There are no comments for Property OWAforDevicesEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ShowGalAsDefaultView"> <summary> There are no comments for Property ShowGalAsDefaultView in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.EmailAddresses"> <summary> There are no comments for Property EmailAddresses in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.LegacyExchangeDN"> <summary> There are no comments for Property LegacyExchangeDN in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.LinkedMasterAccount"> <summary> There are no comments for Property LinkedMasterAccount in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.SamAccountName"> <summary> There are no comments for Property SamAccountName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.SmtpClientAuthenticationDisabled"> <summary> There are no comments for Property SmtpClientAuthenticationDisabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.OWAEnabled"> <summary> There are no comments for Property OWAEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.DistinguishedName"> <summary> There are no comments for Property DistinguishedName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ExchangeObjectId"> <summary> There are no comments for Property ExchangeObjectId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ObjectCategory"> <summary> There are no comments for Property ObjectCategory in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ObjectClass"> <summary> There are no comments for Property ObjectClass in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.OrganizationId"> <summary> There are no comments for Property OrganizationId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.PublicFolderClientAccess"> <summary> There are no comments for Property PublicFolderClientAccess in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.WhenChangedUTC"> <summary> There are no comments for Property WhenChangedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.WhenCreatedUTC"> <summary> There are no comments for Property WhenCreatedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.WhenChanged"> <summary> There are no comments for Property WhenChanged in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.WhenCreated"> <summary> There are no comments for Property WhenCreated in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.OwaMailboxPolicy"> <summary> There are no comments for Property OwaMailboxPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.IsOptimizedForAccessibility"> <summary> There are no comments for Property IsOptimizedForAccessibility in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ImapEnabled"> <summary> There are no comments for Property ImapEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ImapSuppressReadReceipt"> <summary> There are no comments for Property ImapSuppressReadReceipt in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ImapEnableExactRFC822Size"> <summary> There are no comments for Property ImapEnableExactRFC822Size in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ImapMessagesRetrievalMimeFormat"> <summary> There are no comments for Property ImapMessagesRetrievalMimeFormat in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ImapUseProtocolDefaults"> <summary> There are no comments for Property ImapUseProtocolDefaults in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ImapForceICalForCalendarRetrievalOption"> <summary> There are no comments for Property ImapForceICalForCalendarRetrievalOption in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.PopEnabled"> <summary> There are no comments for Property PopEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.PopSuppressReadReceipt"> <summary> There are no comments for Property PopSuppressReadReceipt in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.PopEnableExactRFC822Size"> <summary> There are no comments for Property PopEnableExactRFC822Size in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.PopMessagesRetrievalMimeFormat"> <summary> There are no comments for Property PopMessagesRetrievalMimeFormat in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.PopUseProtocolDefaults"> <summary> There are no comments for Property PopUseProtocolDefaults in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.PopMessageDeleteEnabled"> <summary> There are no comments for Property PopMessageDeleteEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.PopForceICalForCalendarRetrievalOption"> <summary> There are no comments for Property PopForceICalForCalendarRetrievalOption in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.MAPIEnabled"> <summary> There are no comments for Property MAPIEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.MAPIBlockOutlookVersions"> <summary> There are no comments for Property MAPIBlockOutlookVersions in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.MAPIBlockOutlookRpcHttp"> <summary> There are no comments for Property MAPIBlockOutlookRpcHttp in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.MapiHttpEnabled"> <summary> There are no comments for Property MapiHttpEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.MAPIBlockOutlookNonCachedMode"> <summary> There are no comments for Property MAPIBlockOutlookNonCachedMode in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.MAPIBlockOutlookExternalConnectivity"> <summary> There are no comments for Property MAPIBlockOutlookExternalConnectivity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.EwsEnabled"> <summary> There are no comments for Property EwsEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.EwsAllowOutlook"> <summary> There are no comments for Property EwsAllowOutlook in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.EwsAllowMacOutlook"> <summary> There are no comments for Property EwsAllowMacOutlook in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.EwsAllowEntourage"> <summary> There are no comments for Property EwsAllowEntourage in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.EwsApplicationAccessPolicy"> <summary> There are no comments for Property EwsApplicationAccessPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.EwsAllowList"> <summary> There are no comments for Property EwsAllowList in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.EwsBlockList"> <summary> There are no comments for Property EwsBlockList in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ActiveSyncAllowedDeviceIDs"> <summary> There are no comments for Property ActiveSyncAllowedDeviceIDs in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ActiveSyncBlockedDeviceIDs"> <summary> There are no comments for Property ActiveSyncBlockedDeviceIDs in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ActiveSyncEnabled"> <summary> There are no comments for Property ActiveSyncEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ActiveSyncSuppressReadReceipt"> <summary> There are no comments for Property ActiveSyncSuppressReadReceipt in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ActiveSyncMailboxPolicyIsDefaulted"> <summary> There are no comments for Property ActiveSyncMailboxPolicyIsDefaulted in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ActiveSyncMailboxPolicy"> <summary> There are no comments for Property ActiveSyncMailboxPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.HasActiveSyncDevicePartnership"> <summary> There are no comments for Property HasActiveSyncDevicePartnership in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ActiveSyncDebugLogging"> <summary> There are no comments for Property ActiveSyncDebugLogging in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ExternalImapSettings"> <summary> There are no comments for Property ExternalImapSettings in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.InternalImapSettings"> <summary> There are no comments for Property InternalImapSettings in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ExternalPopSettings"> <summary> There are no comments for Property ExternalPopSettings in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.InternalPopSettings"> <summary> There are no comments for Property InternalPopSettings in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ExternalSmtpSettings"> <summary> There are no comments for Property ExternalSmtpSettings in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.InternalSmtpSettings"> <summary> There are no comments for Property InternalSmtpSettings in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.DeltaUpdates"> <summary> There are no comments for Property DeltaUpdates in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ChangedProperties"> <summary> List to capture all changed properties. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.ChangedPropertiesToIgnore"> <summary> List to capture all changed properties which need to ignore. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.#ctor"> <summary> Constructor will add property change delegate. This delegate will capture all changed properties in the model object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.CasMailbox.AddPropertyToChangedPropertiesSet(System.String)"> <summary> Helper function to add given property name to changed properties set. </summary> <param name="propertyName">Property name to be added to set.</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermissionSingle"> <summary> There are no comments for RecipientPermissionSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermissionSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new RecipientPermissionSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermissionSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new RecipientPermissionSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermissionSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.RecipientPermission})"> <summary> Initialize a new RecipientPermissionSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermission"> <summary> There are no comments for RecipientPermission in the schema. </summary> <KeyProperties> Trustee </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermission.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermission.Trustee"> <summary> There are no comments for Property Trustee in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermission.AccessControlType"> <summary> There are no comments for Property AccessControlType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermission.AccessRights"> <summary> There are no comments for Property AccessRights in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermission.IsInherited"> <summary> There are no comments for Property IsInherited in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermission.InheritanceType"> <summary> There are no comments for Property InheritanceType in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermission.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RecipientPermission.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.RecipientSingle"> <summary> There are no comments for RecipientSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RecipientSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new RecipientSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RecipientSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new RecipientSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RecipientSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.Recipient})"> <summary> Initialize a new RecipientSingle object. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RecipientSingle.RecipientPermission"> <summary> There are no comments for RecipientPermission in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.Recipient"> <summary> There are no comments for Recipient in the schema. </summary> <KeyProperties> ObjectKey </KeyProperties> <summary> Class Recipient. <para> Adding partial class here because we need to add PropertyChanged delegate when object is created. PropertyChanged delegate keeps track of all changed properties in this object. </para> <para> This is not autogenerated. </para> </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ObjectKey"> <summary> There are no comments for Property ObjectKey in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExternalDirectoryObjectId"> <summary> There are no comments for Property ExternalDirectoryObjectId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Alias"> <summary> There are no comments for Property Alias in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.EmailAddresses"> <summary> There are no comments for Property EmailAddresses in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.DisplayName"> <summary> There are no comments for Property DisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.FirstName"> <summary> There are no comments for Property FirstName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.LastName"> <summary> There are no comments for Property LastName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ArchiveGuid"> <summary> There are no comments for Property ArchiveGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.AuthenticationType"> <summary> There are no comments for Property AuthenticationType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.City"> <summary> There are no comments for Property City in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Notes"> <summary> There are no comments for Property Notes in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Company"> <summary> There are no comments for Property Company in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CountryOrRegion"> <summary> There are no comments for Property CountryOrRegion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.PostalCode"> <summary> There are no comments for Property PostalCode in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute1"> <summary> There are no comments for Property CustomAttribute1 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute2"> <summary> There are no comments for Property CustomAttribute2 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute3"> <summary> There are no comments for Property CustomAttribute3 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute4"> <summary> There are no comments for Property CustomAttribute4 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute5"> <summary> There are no comments for Property CustomAttribute5 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute6"> <summary> There are no comments for Property CustomAttribute6 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute7"> <summary> There are no comments for Property CustomAttribute7 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute8"> <summary> There are no comments for Property CustomAttribute8 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute9"> <summary> There are no comments for Property CustomAttribute9 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute10"> <summary> There are no comments for Property CustomAttribute10 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute11"> <summary> There are no comments for Property CustomAttribute11 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute12"> <summary> There are no comments for Property CustomAttribute12 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute13"> <summary> There are no comments for Property CustomAttribute13 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute14"> <summary> There are no comments for Property CustomAttribute14 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.CustomAttribute15"> <summary> There are no comments for Property CustomAttribute15 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExtensionCustomAttribute1"> <summary> There are no comments for Property ExtensionCustomAttribute1 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExtensionCustomAttribute2"> <summary> There are no comments for Property ExtensionCustomAttribute2 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExtensionCustomAttribute3"> <summary> There are no comments for Property ExtensionCustomAttribute3 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExtensionCustomAttribute4"> <summary> There are no comments for Property ExtensionCustomAttribute4 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExtensionCustomAttribute5"> <summary> There are no comments for Property ExtensionCustomAttribute5 in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Database"> <summary> There are no comments for Property Database in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ArchiveDatabase"> <summary> There are no comments for Property ArchiveDatabase in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.DatabaseName"> <summary> There are no comments for Property DatabaseName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Department"> <summary> There are no comments for Property Department in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ManagedFolderMailboxPolicy"> <summary> There are no comments for Property ManagedFolderMailboxPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExpansionServer"> <summary> There are no comments for Property ExpansionServer in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExternalEmailAddress"> <summary> There are no comments for Property ExternalEmailAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.HiddenFromAddressListsEnabled"> <summary> There are no comments for Property HiddenFromAddressListsEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.EmailAddressPolicyEnabled"> <summary> There are no comments for Property EmailAddressPolicyEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ResourceType"> <summary> There are no comments for Property ResourceType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ManagedBy"> <summary> There are no comments for Property ManagedBy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Manager"> <summary> There are no comments for Property Manager in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ActiveSyncMailboxPolicy"> <summary> There are no comments for Property ActiveSyncMailboxPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ActiveSyncMailboxPolicyIsDefaulted"> <summary> There are no comments for Property ActiveSyncMailboxPolicyIsDefaulted in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Office"> <summary> There are no comments for Property Office in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ObjectCategory"> <summary> There are no comments for Property ObjectCategory in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.OrganizationalUnit"> <summary> There are no comments for Property OrganizationalUnit in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Phone"> <summary> There are no comments for Property Phone in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.PoliciesIncluded"> <summary> There are no comments for Property PoliciesIncluded in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.PoliciesExcluded"> <summary> There are no comments for Property PoliciesExcluded in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.PrimarySmtpAddress"> <summary> There are no comments for Property PrimarySmtpAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.RecipientType"> <summary> There are no comments for Property RecipientType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.RecipientTypeDetails"> <summary> There are no comments for Property RecipientTypeDetails in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.SamAccountName"> <summary> There are no comments for Property SamAccountName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ServerLegacyDN"> <summary> There are no comments for Property ServerLegacyDN in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ServerName"> <summary> There are no comments for Property ServerName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.StateOrProvince"> <summary> There are no comments for Property StateOrProvince in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.StorageGroupName"> <summary> There are no comments for Property StorageGroupName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Title"> <summary> There are no comments for Property Title in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.UMEnabled"> <summary> There are no comments for Property UMEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.UMMailboxPolicy"> <summary> There are no comments for Property UMMailboxPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.UMRecipientDialPlanId"> <summary> There are no comments for Property UMRecipientDialPlanId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.WindowsLiveID"> <summary> There are no comments for Property WindowsLiveID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.HasActiveSyncDevicePartnership"> <summary> There are no comments for Property HasActiveSyncDevicePartnership in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.AddressListMembership"> <summary> There are no comments for Property AddressListMembership in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.OwaMailboxPolicy"> <summary> There are no comments for Property OwaMailboxPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.AddressBookPolicy"> <summary> There are no comments for Property AddressBookPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.SharingPolicy"> <summary> There are no comments for Property SharingPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.RetentionPolicy"> <summary> There are no comments for Property RetentionPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ShouldUseDefaultRetentionPolicy"> <summary> There are no comments for Property ShouldUseDefaultRetentionPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.MailboxMoveTargetMDB"> <summary> There are no comments for Property MailboxMoveTargetMDB in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.MailboxMoveSourceMDB"> <summary> There are no comments for Property MailboxMoveSourceMDB in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.MailboxMoveFlags"> <summary> There are no comments for Property MailboxMoveFlags in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.MailboxMoveRemoteHostName"> <summary> There are no comments for Property MailboxMoveRemoteHostName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.MailboxMoveBatchName"> <summary> There are no comments for Property MailboxMoveBatchName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.MailboxMoveStatus"> <summary> There are no comments for Property MailboxMoveStatus in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.MailboxRelease"> <summary> There are no comments for Property MailboxRelease in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ArchiveRelease"> <summary> There are no comments for Property ArchiveRelease in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.IsValidSecurityPrincipal"> <summary> There are no comments for Property IsValidSecurityPrincipal in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.LitigationHoldEnabled"> <summary> There are no comments for Property LitigationHoldEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Capabilities"> <summary> There are no comments for Property Capabilities in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ArchiveState"> <summary> There are no comments for Property ArchiveState in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.SKUAssigned"> <summary> There are no comments for Property SKUAssigned in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.WhenMailboxCreated"> <summary> There are no comments for Property WhenMailboxCreated in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.UsageLocation"> <summary> There are no comments for Property UsageLocation in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExchangeGuid"> <summary> There are no comments for Property ExchangeGuid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ArchiveStatus"> <summary> There are no comments for Property ArchiveStatus in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.SafeSendersHash"> <summary> There are no comments for Property SafeSendersHash in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.SafeRecipientsHash"> <summary> There are no comments for Property SafeRecipientsHash in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.BlockedSendersHash"> <summary> There are no comments for Property BlockedSendersHash in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.WhenSoftDeleted"> <summary> There are no comments for Property WhenSoftDeleted in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExchangeVersion"> <summary> There are no comments for Property ExchangeVersion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.DistinguishedName"> <summary> There are no comments for Property DistinguishedName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ObjectClass"> <summary> There are no comments for Property ObjectClass in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.WhenChanged"> <summary> There are no comments for Property WhenChanged in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.WhenCreated"> <summary> There are no comments for Property WhenCreated in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.WhenChangedUTC"> <summary> There are no comments for Property WhenChangedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.WhenCreatedUTC"> <summary> There are no comments for Property WhenCreatedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ExchangeObjectId"> <summary> There are no comments for Property ExchangeObjectId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.OrganizationId"> <summary> There are no comments for Property OrganizationId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Id"> <summary> There are no comments for Property Id in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.Guid"> <summary> There are no comments for Property Guid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.Recipient.RecipientPermission"> <summary> There are no comments for Property RecipientPermission in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.Recipient.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Recipient.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ChangedProperties"> <summary> List to capture all changed properties. </summary> </member> <member name="F:Microsoft.Exchange.Management.AdminApiProvider.Recipient.ChangedPropertiesToIgnore"> <summary> List to capture all changed properties which need to ignore. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Recipient.#ctor"> <summary> Constructor will add property change delegate. This delegate will capture all changed properties in the model object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.Recipient.AddPropertyToChangedPropertiesSet(System.String)"> <summary> Helper function to add given property name to changed properties set. </summary> <param name="propertyName">Property name to be added to set.</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicySingle"> <summary> There are no comments for RetentionPolicySingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicySingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new RetentionPolicySingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicySingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new RetentionPolicySingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicySingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy})"> <summary> Initialize a new RetentionPolicySingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy"> <summary> There are no comments for RetentionPolicy in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy.IsDefaultArbitrationMailbox"> <summary> There are no comments for Property IsDefaultArbitrationMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy.AdminDisplayName"> <summary> There are no comments for Property AdminDisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy.IsDefault"> <summary> There are no comments for Property IsDefault in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy.IsValid"> <summary> There are no comments for Property IsValid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy.WhenChangedUTC"> <summary> There are no comments for Property WhenChangedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy.WhenCreatedUTC"> <summary> There are no comments for Property WhenCreatedUTC in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RetentionPolicy.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicySingle"> <summary> There are no comments for RoleAssignmentPolicySingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicySingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new RoleAssignmentPolicySingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicySingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new RoleAssignmentPolicySingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicySingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy})"> <summary> Initialize a new RoleAssignmentPolicySingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy"> <summary> There are no comments for RoleAssignmentPolicy in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy.Description"> <summary> There are no comments for Property Description in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy.AdminDisplayName"> <summary> There are no comments for Property AdminDisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy.IsDefault"> <summary> There are no comments for Property IsDefault in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy.IsValid"> <summary> There are no comments for Property IsValid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy.WhenChangedUTC"> <summary> There are no comments for Property WhenChangedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy.WhenCreatedUTC"> <summary> There are no comments for Property WhenCreatedUTC in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.RoleAssignmentPolicy.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicySingle"> <summary> There are no comments for AddressBookPolicySingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicySingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new AddressBookPolicySingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicySingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new AddressBookPolicySingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicySingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy})"> <summary> Initialize a new AddressBookPolicySingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy"> <summary> There are no comments for AddressBookPolicy in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy.AdminDisplayName"> <summary> There are no comments for Property AdminDisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy.IsDefault"> <summary> There are no comments for Property IsDefault in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy.IsValid"> <summary> There are no comments for Property IsValid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy.WhenChangedUTC"> <summary> There are no comments for Property WhenChangedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy.WhenCreatedUTC"> <summary> There are no comments for Property WhenCreatedUTC in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.AddressBookPolicy.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicySingle"> <summary> There are no comments for SharingPolicySingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicySingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new SharingPolicySingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicySingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new SharingPolicySingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicySingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy})"> <summary> Initialize a new SharingPolicySingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy"> <summary> There are no comments for SharingPolicy in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy.AdminDisplayName"> <summary> There are no comments for Property AdminDisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy.Default"> <summary> There are no comments for Property Default in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy.IsValid"> <summary> There are no comments for Property IsValid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy.WhenChangedUTC"> <summary> There are no comments for Property WhenChangedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy.WhenCreatedUTC"> <summary> There are no comments for Property WhenCreatedUTC in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.SharingPolicy.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.UserSingle"> <summary> There are no comments for UserSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.UserSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new UserSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.UserSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new UserSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.UserSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.User})"> <summary> Initialize a new UserSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.User"> <summary> There are no comments for User in the schema. </summary> <KeyProperties> ExternalDirectoryObjectId </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.ExternalDirectoryObjectId"> <summary> There are no comments for Property ExternalDirectoryObjectId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.MailboxProvisioningConstraint"> <summary> There are no comments for Property MailboxProvisioningConstraint in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.MailboxRegion"> <summary> There are no comments for Property MailboxRegion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.MailboxRegionLastUpdateTime"> <summary> There are no comments for Property MailboxRegionLastUpdateTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.MailboxProvisioningPreferences"> <summary> There are no comments for Property MailboxProvisioningPreferences in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.MailboxLocations"> <summary> There are no comments for Property MailboxLocations in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.IsLinked"> <summary> There are no comments for Property IsLinked in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.LinkedMasterAccount"> <summary> There are no comments for Property LinkedMasterAccount in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.ResetPasswordOnNextLogon"> <summary> There are no comments for Property ResetPasswordOnNextLogon in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.RemotePowerShellEnabled"> <summary> There are no comments for Property RemotePowerShellEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.SamAccountName"> <summary> There are no comments for Property SamAccountName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Office"> <summary> There are no comments for Property Office in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UserPrincipalName"> <summary> There are no comments for Property UserPrincipalName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.NetID"> <summary> There are no comments for Property NetID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.ConsumerNetID"> <summary> There are no comments for Property ConsumerNetID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.WindowsLiveID"> <summary> There are no comments for Property WindowsLiveID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.MicrosoftOnlineServicesID"> <summary> There are no comments for Property MicrosoftOnlineServicesID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.MailboxRelease"> <summary> There are no comments for Property MailboxRelease in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.ArchiveRelease"> <summary> There are no comments for Property ArchiveRelease in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.SKUAssigned"> <summary> There are no comments for Property SKUAssigned in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.IsSoftDeletedByRemove"> <summary> There are no comments for Property IsSoftDeletedByRemove in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.IsSoftDeletedByDisable"> <summary> There are no comments for Property IsSoftDeletedByDisable in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.IsInactiveMailbox"> <summary> There are no comments for Property IsInactiveMailbox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.WhenSoftDeleted"> <summary> There are no comments for Property WhenSoftDeleted in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.AccountDisabled"> <summary> There are no comments for Property AccountDisabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.StsRefreshTokensValidFrom"> <summary> There are no comments for Property StsRefreshTokensValidFrom in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.IsDirSynced"> <summary> There are no comments for Property IsDirSynced in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.AdministrativeUnits"> <summary> There are no comments for Property AdministrativeUnits in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.OrganizationalUnit"> <summary> There are no comments for Property OrganizationalUnit in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.DisplayName"> <summary> There are no comments for Property DisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.LegacyExchangeDN"> <summary> There are no comments for Property LegacyExchangeDN in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.RecipientType"> <summary> There are no comments for Property RecipientType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.RecipientTypeDetails"> <summary> There are no comments for Property RecipientTypeDetails in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.SimpleDisplayName"> <summary> There are no comments for Property SimpleDisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UMDtmfMap"> <summary> There are no comments for Property UMDtmfMap in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.WindowsEmailAddress"> <summary> There are no comments for Property WindowsEmailAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Id"> <summary> There are no comments for Property Id in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.ExchangeVersion"> <summary> There are no comments for Property ExchangeVersion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.DistinguishedName"> <summary> There are no comments for Property DistinguishedName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.ObjectCategory"> <summary> There are no comments for Property ObjectCategory in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.ObjectClass"> <summary> There are no comments for Property ObjectClass in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.WhenChanged"> <summary> There are no comments for Property WhenChanged in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.WhenCreated"> <summary> There are no comments for Property WhenCreated in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.WhenChangedUTC"> <summary> There are no comments for Property WhenChangedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.WhenCreatedUTC"> <summary> There are no comments for Property WhenCreatedUTC in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.ExchangeObjectId"> <summary> There are no comments for Property ExchangeObjectId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.OrganizationId"> <summary> There are no comments for Property OrganizationId in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Guid"> <summary> There are no comments for Property Guid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UserAccountControl"> <summary> There are no comments for Property UserAccountControl in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.City"> <summary> There are no comments for Property City in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Company"> <summary> There are no comments for Property Company in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.CountryOrRegion"> <summary> There are no comments for Property CountryOrRegion in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Department"> <summary> There are no comments for Property Department in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Fax"> <summary> There are no comments for Property Fax in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.FirstName"> <summary> There are no comments for Property FirstName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.LastName"> <summary> There are no comments for Property LastName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.HomePhone"> <summary> There are no comments for Property HomePhone in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.OtherHomePhone"> <summary> There are no comments for Property OtherHomePhone in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.OtherTelephone"> <summary> There are no comments for Property OtherTelephone in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.MobilePhone"> <summary> There are no comments for Property MobilePhone in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.OtherFax"> <summary> There are no comments for Property OtherFax in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Pager"> <summary> There are no comments for Property Pager in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Phone"> <summary> There are no comments for Property Phone in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.TelephoneAssistant"> <summary> There are no comments for Property TelephoneAssistant in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.PhoneticDisplayName"> <summary> There are no comments for Property PhoneticDisplayName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.PostalCode"> <summary> There are no comments for Property PostalCode in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.StateOrProvince"> <summary> There are no comments for Property StateOrProvince in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.StreetAddress"> <summary> There are no comments for Property StreetAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Title"> <summary> There are no comments for Property Title in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.WebPage"> <summary> There are no comments for Property WebPage in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.AssistantName"> <summary> There are no comments for Property AssistantName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.SeniorityIndex"> <summary> There are no comments for Property SeniorityIndex in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Notes"> <summary> There are no comments for Property Notes in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Initials"> <summary> There are no comments for Property Initials in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.DirectReports"> <summary> There are no comments for Property DirectReports in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Manager"> <summary> There are no comments for Property Manager in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.VoiceMailSettings"> <summary> There are no comments for Property VoiceMailSettings in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.PostOfficeBox"> <summary> There are no comments for Property PostOfficeBox in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.PreviousRecipientTypeDetails"> <summary> There are no comments for Property PreviousRecipientTypeDetails in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Sid"> <summary> There are no comments for Property Sid in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.SidHistory"> <summary> There are no comments for Property SidHistory in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.GeoCoordinates"> <summary> There are no comments for Property GeoCoordinates in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.AuthenticationPolicy"> <summary> There are no comments for Property AuthenticationPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.AllowUMCallsFromNonUsers"> <summary> There are no comments for Property AllowUMCallsFromNonUsers in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.CertificateSubject"> <summary> There are no comments for Property CertificateSubject in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.CloudCacheProvider"> <summary> There are no comments for Property CloudCacheProvider in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.CloudCacheScope"> <summary> There are no comments for Property CloudCacheScope in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.CloudCacheRemoteEmailAddress"> <summary> There are no comments for Property CloudCacheRemoteEmailAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.CloudCacheUserName"> <summary> There are no comments for Property CloudCacheUserName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.IsCloudCache"> <summary> There are no comments for Property IsCloudCache in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.IsCloudCacheBlocked"> <summary> There are no comments for Property IsCloudCacheBlocked in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.IsCloudCacheProvisioningComplete"> <summary> There are no comments for Property IsCloudCacheProvisioningComplete in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.InPlaceHoldsRaw"> <summary> There are no comments for Property InPlaceHoldsRaw in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.MailboxWorkloads"> <summary> There are no comments for Property MailboxWorkloads in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.DesiredMailboxWorkloads"> <summary> There are no comments for Property DesiredMailboxWorkloads in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.DesiredMailboxWorkloadsGracePeriod"> <summary> There are no comments for Property DesiredMailboxWorkloadsGracePeriod in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.DesiredMailboxWorkloadsModified"> <summary> There are no comments for Property DesiredMailboxWorkloadsModified in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.IsSecurityPrincipal"> <summary> There are no comments for Property IsSecurityPrincipal in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.LegalAgeGroup"> <summary> There are no comments for Property LegalAgeGroup in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UMDialPlan"> <summary> There are no comments for Property UMDialPlan in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UMCallingLineIds"> <summary> There are no comments for Property UMCallingLineIds in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UpgradeMessage"> <summary> There are no comments for Property UpgradeMessage in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UpgradeDetails"> <summary> There are no comments for Property UpgradeDetails in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UpgradeRequest"> <summary> There are no comments for Property UpgradeRequest in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UpgradeStage"> <summary> There are no comments for Property UpgradeStage in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UpgradeStageTimeStamp"> <summary> There are no comments for Property UpgradeStageTimeStamp in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.UpgradeStatus"> <summary> There are no comments for Property UpgradeStatus in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.PublicFolder"> <summary> There are no comments for Property PublicFolder in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.CreateDTMFMap"> <summary> There are no comments for Property CreateDTMFMap in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.BlockCloudCache"> <summary> There are no comments for Property BlockCloudCache in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.PermanentlyClearPreviousMailboxInfo"> <summary> There are no comments for Property PermanentlyClearPreviousMailboxInfo in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.RemoveMailboxProvisioningConstraint"> <summary> There are no comments for Property RemoveMailboxProvisioningConstraint in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.User.Vip"> <summary> There are no comments for Property Vip in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.User.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.User.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnectorSingle"> <summary> There are no comments for OutboundConnectorSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnectorSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new OutboundConnectorSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnectorSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new OutboundConnectorSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnectorSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector})"> <summary> Initialize a new OutboundConnectorSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector"> <summary> There are no comments for OutboundConnector in the schema. </summary> <KeyProperties> Guid </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.ConnectorType"> <summary> There are no comments for Property ConnectorType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.ConnectorSource"> <summary> There are no comments for Property ConnectorSource in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.Enabled"> <summary> There are no comments for Property Enabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.UseMXRecord"> <summary> There are no comments for Property UseMXRecord in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.Comment"> <summary> There are no comments for Property Comment in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.SmartHosts"> <summary> There are no comments for Property SmartHosts in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.RecipientDomains"> <summary> There are no comments for Property RecipientDomains in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.TlsDomain"> <summary> There are no comments for Property TlsDomain in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.TlsSettings"> <summary> There are no comments for Property TlsSettings in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.IsTransportRuleScoped"> <summary> There are no comments for Property IsTransportRuleScoped in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.RouteAllMessagesViaOnPremises"> <summary> There are no comments for Property RouteAllMessagesViaOnPremises in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.CloudServicesMailEnabled"> <summary> There are no comments for Property CloudServicesMailEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.AllAcceptedDomains"> <summary> There are no comments for Property AllAcceptedDomains in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.TestMode"> <summary> There are no comments for Property TestMode in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.LinkForModifiedConnector"> <summary> There are no comments for Property LinkForModifiedConnector in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.ValidationRecipients"> <summary> There are no comments for Property ValidationRecipients in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.IsValidated"> <summary> There are no comments for Property IsValidated in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.LastValidationTimestamp"> <summary> There are no comments for Property LastValidationTimestamp in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.Guid"> <summary> There are no comments for Property Guid in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnector.ValidateOutboundConnector(System.Collections.Generic.ICollection{System.String})"> <summary> There are no comments for ValidateOutboundConnector in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnectorValidationResult"> <summary> There are no comments for OutboundConnectorValidationResult in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnectorValidationResult.IsTaskSuccessful"> <summary> There are no comments for Property IsTaskSuccessful in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnectorValidationResult.TaskName"> <summary> There are no comments for Property TaskName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnectorValidationResult.TaskDetail"> <summary> There are no comments for Property TaskDetail in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.OutboundConnectorValidationResult.SubTaskResults"> <summary> There are no comments for Property SubTaskResults in the schema. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.InboundConnectorSingle"> <summary> There are no comments for InboundConnectorSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.InboundConnectorSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new InboundConnectorSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.InboundConnectorSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new InboundConnectorSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.InboundConnectorSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.InboundConnector})"> <summary> Initialize a new InboundConnectorSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector"> <summary> There are no comments for InboundConnector in the schema. </summary> <KeyProperties> Guid </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.ConnectorType"> <summary> There are no comments for Property ConnectorType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.ConnectorSource"> <summary> There are no comments for Property ConnectorSource in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.Enabled"> <summary> There are no comments for Property Enabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.Comment"> <summary> There are no comments for Property Comment in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.SenderIPAddresses"> <summary> There are no comments for Property SenderIPAddresses in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.SenderDomains"> <summary> There are no comments for Property SenderDomains in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.AssociatedAcceptedDomains"> <summary> There are no comments for Property AssociatedAcceptedDomains in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.RequireTls"> <summary> There are no comments for Property RequireTls in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.RestrictDomainsToIPAddresses"> <summary> There are no comments for Property RestrictDomainsToIPAddresses in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.RestrictDomainsToCertificate"> <summary> There are no comments for Property RestrictDomainsToCertificate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.CloudServicesMailEnabled"> <summary> There are no comments for Property CloudServicesMailEnabled in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.TreatMessagesAsInternal"> <summary> There are no comments for Property TreatMessagesAsInternal in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.TlsSenderCertificateName"> <summary> There are no comments for Property TlsSenderCertificateName in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.EFTestMode"> <summary> There are no comments for Property EFTestMode in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.ScanAndDropRecipients"> <summary> There are no comments for Property ScanAndDropRecipients in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.EFSkipLastIP"> <summary> There are no comments for Property EFSkipLastIP in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.EFSkipIPs"> <summary> There are no comments for Property EFSkipIPs in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.EFSkipMailGateway"> <summary> There are no comments for Property EFSkipMailGateway in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.EFUsers"> <summary> There are no comments for Property EFUsers in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.Name"> <summary> There are no comments for Property Name in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.Guid"> <summary> There are no comments for Property Guid in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.InboundConnector.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearchSingle"> <summary> There are no comments for HistoricalSearchSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearchSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new HistoricalSearchSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearchSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new HistoricalSearchSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearchSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch})"> <summary> Initialize a new HistoricalSearchSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch"> <summary> There are no comments for HistoricalSearch in the schema. </summary> <KeyProperties> JobId </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.CompressFile"> <summary> There are no comments for Property CompressFile in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.NumOfBlocks"> <summary> There are no comments for Property NumOfBlocks in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.IsSaved"> <summary> There are no comments for Property IsSaved in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.EncryptionTemplate"> <summary> There are no comments for Property EncryptionTemplate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.EncryptionType"> <summary> There are no comments for Property EncryptionType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.JobProgress"> <summary> There are no comments for Property JobProgress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.EstimatedCompletionTime"> <summary> There are no comments for Property EstimatedCompletionTime in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.CompletionDate"> <summary> There are no comments for Property CompletionDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.Direction"> <summary> There are no comments for Property Direction in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.DLPPolicy"> <summary> There are no comments for Property DLPPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.TransportRule"> <summary> There are no comments for Property TransportRule in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.MessageID"> <summary> There are no comments for Property MessageID in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.OriginalClientIP"> <summary> There are no comments for Property OriginalClientIP in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.RecipientAddress"> <summary> There are no comments for Property RecipientAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.SenderAddress"> <summary> There are no comments for Property SenderAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.DeliveryStatus"> <summary> There are no comments for Property DeliveryStatus in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.EndDate"> <summary> There are no comments for Property EndDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.StartDate"> <summary> There are no comments for Property StartDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.NotifyAddress"> <summary> There are no comments for Property NotifyAddress in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.ReportType"> <summary> There are no comments for Property ReportType in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.ReportStatusDescription"> <summary> There are no comments for Property ReportStatusDescription in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.FileUrl"> <summary> There are no comments for Property FileUrl in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.ErrorDescription"> <summary> There are no comments for Property ErrorDescription in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.ErrorCode"> <summary> There are no comments for Property ErrorCode in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.FileRows"> <summary> There are no comments for Property FileRows in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.Rows"> <summary> There are no comments for Property Rows in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.Status"> <summary> There are no comments for Property Status in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.ReportTitle"> <summary> There are no comments for Property ReportTitle in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.SubmitDate"> <summary> There are no comments for Property SubmitDate in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.JobId"> <summary> There are no comments for Property JobId in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.HistoricalSearch.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessingSingle"> <summary> There are no comments for CalendarProcessingSingle in the schema. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessingSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String)"> <summary> Initialize a new CalendarProcessingSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessingSingle.#ctor(Microsoft.OData.Client.DataServiceContext,System.String,System.Boolean)"> <summary> Initialize a new CalendarProcessingSingle object. </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessingSingle.#ctor(Microsoft.OData.Client.DataServiceQuerySingle{Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing})"> <summary> Initialize a new CalendarProcessingSingle object. </summary> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing"> <summary> There are no comments for CalendarProcessing in the schema. </summary> <KeyProperties> Identity </KeyProperties> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.Identity"> <summary> There are no comments for Property Identity in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.AllBookInPolicy"> <summary> There are no comments for Property AllBookInPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.AllRequestInPolicy"> <summary> There are no comments for Property AllRequestInPolicy in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.AddAdditionalResponse"> <summary> There are no comments for Property AddAdditionalResponse in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.AdditionalResponse"> <summary> There are no comments for Property AdditionalResponse in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.AllowRecurringMeetings"> <summary> There are no comments for Property AllowRecurringMeetings in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.AutomateProcessing"> <summary> There are no comments for Property AutomateProcessing in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.BookingWindowInDays"> <summary> There are no comments for Property BookingWindowInDays in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.EnforceSchedulingHorizon"> <summary> There are no comments for Property EnforceSchedulingHorizon in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.MaximumDurationInMinutes"> <summary> There are no comments for Property MaximumDurationInMinutes in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.ScheduleOnlyDuringWorkHours"> <summary> There are no comments for Property ScheduleOnlyDuringWorkHours in the schema. </summary> </member> <member name="P:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.ResourceDelegates"> <summary> There are no comments for Property ResourceDelegates in the schema. </summary> </member> <member name="E:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.PropertyChanged"> <summary> This event is raised when the value of the property is changed </summary> </member> <member name="M:Microsoft.Exchange.Management.AdminApiProvider.CalendarProcessing.OnPropertyChanged(System.String)"> <summary> The value of the property is changed </summary> <param name="property">property name</param> </member> <member name="T:Microsoft.Exchange.Management.AdminApiProvider.CmdletInfoSingle"> <summary> There are no comments for CmdletInfoSingle in the schema. </summary> </member> &nbs |