Microsoft.Alm.Authentication.TargetUri.ToString C# (CSharp) Method

ToString() public method

Gets a canonical string representation for the QueryUri.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return QueryUri.ToString();
        }

Usage Example

        /// <summary>
        /// Deletes a `<see cref="Credential"/>` from the storage used by the authentication object.
        /// </summary>
        /// <param name="targetUri">The uniform resource indicator used to uniquely identify the credentials.</param>
        public override void DeleteCredentials(TargetUri targetUri)
        {
            BaseSecureStore.ValidateTargetUri(targetUri);

            Credential credentials = PersonalAccessTokenStore.ReadCredentials(targetUri);

            // This ought to be async, but the base type's method isn't.
            Task.Run(async() =>
            {
                // Attempt to validate the credentials, if they're truly invalid delete them.
                if (!await ValidateCredentials(targetUri, credentials))
                {
                    PersonalAccessTokenStore.DeleteCredentials(targetUri);

                    // Remove any related entries from the tenant cache because tenant change
                    // could the be source of the invalidation, and not purging the cache will
                    // trap the user in a limbo state of invalid credentials.

                    // Deserialize the cache and remove any matching entry.
                    string tenantUrl = targetUri.ToString();
                    var cache        = await DeserializeTenantCache();

                    // Attempt to remove the URL entry, if successful serialize the cache.
                    if (cache.Remove(tenantUrl))
                    {
                        await SerializeTenantCache(cache);
                    }
                }
            }).Wait();
        }
All Usage Examples Of Microsoft.Alm.Authentication.TargetUri::ToString