public bool Equals()

in docker_images/csharp/wrapper/src/Models/BlobStorageInfo.cs [113:144]


        public bool Equals(BlobStorageInfo other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;

            return 
                (
                    BlobName == other.BlobName ||
                    BlobName != null &&
                    BlobName.Equals(other.BlobName)
                ) && 
                (
                    ContainerName == other.ContainerName ||
                    ContainerName != null &&
                    ContainerName.Equals(other.ContainerName)
                ) && 
                (
                    CorrelationId == other.CorrelationId ||
                    CorrelationId != null &&
                    CorrelationId.Equals(other.CorrelationId)
                ) && 
                (
                    HostName == other.HostName ||
                    HostName != null &&
                    HostName.Equals(other.HostName)
                ) && 
                (
                    SasToken == other.SasToken ||
                    SasToken != null &&
                    SasToken.Equals(other.SasToken)
                );
        }