CSharp.Bitbucket.Api.BitbucketApiException.BitbucketApiException C# (CSharp) Метод

BitbucketApiException() защищенный Метод

Creates a new instance of the BitbucketApiException class.
protected BitbucketApiException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo /// The /// that holds the serialized object data about the exception being thrown. ///
context System.Runtime.Serialization.StreamingContext /// The /// that contains contextual information about the source or destination. ///
Результат System
        protected BitbucketApiException(SerializationInfo info, StreamingContext context)
            : base(info, context)
        {
            if (info != null)
            {
                _error = (BitbucketApiError)info.GetValue("Error", typeof(BitbucketApiError));
            }
        }

Same methods

BitbucketApiException::BitbucketApiException ( string message, BitbucketApiError error ) : System
BitbucketApiException::BitbucketApiException ( string message, Exception innerException ) : System